另一种方法是使用短代码显示短代码:)
add_shortcode(\'SH\',\'shortcode_display_handler\');
function shortcode_display_handler($atts = array(),$content=null){
$content = str_replace("[","[",$content);
$content = str_replace("]","]",$content);
return $content;
}
用法:
[SH] [gallery] [/SH]