Workaround to Override WordPress Shortcode and Display the [] Brackets Tags
WordPress has added a new function named shortcode with API that WordPress developers and programmers to write plugins that create macro codes for use in post content beginning from WordPress version 2.5. Essentially shortcode is an easy-to-use feature where bloggers just need to insert a bracket-delineated strings that can be magically expanded at runtime to reflect actual dynamic contents., without the need to deal with complex HTML and embed codes.
The problem is that to embed shortcode in WordPress posts or pages, authors have to enclose the shortcode in [ and ] brackets, with certain sting inside. What if you need to write and display the a true and genuine text, which is not shortcode, but have to enclose within brackets (”[" and "]“), and so coincidentally, the the whole text with brackets is one of the shortcodes created and declared in WordPress environment? For example, WordPress comes built-in with [gallery] shortcode, distracting users ability to type “gallery” word in brackets.
If the text in bracket that you type magically disappear and appear as some other content type (will likely to happen more as more plugins embrace shortcode), you can simply leave a space between one of the bracket and the affected text string in the bracket. But this workaround would make the text appears to be weird and not beautiful.
The more recommended way is to type the brackets using numeric character reference, aka ISO Latin-1 code. The “[" and "]” brackets do not have HTML entity, thus users will have to remember the numeric character reference for the brackets.
[ => [
] => ]
As shown in figure above, to type “[" and make sure that it's always appear as "[" without affecting by shortcode, type [ replacing the [. The same applied to ], which should be replaced with ].
Related Articles
- WordPress 2.5 Released for Free Download
- PHP Fatal Error on Call to Add_Query_Var in Taxonomy.php After Upgrading to WordPress 2.5 RC2
- WordPress 2.5 RC2 Released for Download
- Display and Show Feed on HTML Website with FeedBurner BuzzBoost
- WordPress 2.5.1 Released for Download
- How to Fetch and Show RSS Feeds on WordPress Blog (Atom/RSS Aggregator Plugins)
- Make WordPress Blog More Secure Using Secret Key
- Call To Undefined Function: ctype_digit() in WordPress 2.5
- Media Buttons Disabler Plugin to Remove “Add Media” Icons in WordPress 2.5
- Call to Undefined Function get_currentuserinfo() Error in WordPress

































April 17th, 2008 10:51
[...] reading Workaround to Override WordPress Shortcode and Display the [] Brackets Tags at Tip and [...]