Pre and Code
Code
[code]
Code goes here
[/code]
// Code tag
function theme_sc_code($atts, $content = null)
{
$content = clean_pre($content);
return '<code>' .
$content .
'</code>';
}
add_shortcode('code', 'theme_sc_code');
Pre
[pre] Preformatted text goes here [/pre]
// Pre tag
function theme_sc_pre($atts, $content = null)
{
$content = clean_pre($content);
return ‘<pre>’ .
$content .
‘</pre>’;
}
add_shortcode(‘pre’, ‘theme_sc_pre’);