Considering how regularly new versions of Firefox now come along, that's quite some bug fix list in version 10! http://t.co/K3I2vLpW 1 week ago

11th
Jan 10

Displaying WordPress short codes



I’m in the process of writing some instructions for a new plugin – one which uses WordPress short codes. They’re the useful codes that you put in square brackets and are replaced by something else.

The problem is then documenting, because your plugin then wants to convert your text to the appropriate output.

Thankfully, my solution is quick and simple – and it involves another short code!

Open up your themes function.php file and add the following lines of code to it…

add_shortcode('showme',show_me');
function show_me($paras="",$content="") {return $content;}

Then, simply wrap [showme] and [/showme] around any short codes that you don’t want to be interpreted but do want to be displayed.

Delicious Digg Facebook LinkedIn Read It Later reddit StumbleUpon Twitter SeparatorEmail Google Translate PDF Online Print Friendly