我的最后一条评论提醒了我关于短代码的问题,并引导我得出以下答案:
function htmlcomment_shortcode( $atts, $content = null ) {
return \'<!-- \' . $content . \' -->\';
}
add_shortcode( \'htmlcomment\', \'htmlcomment_shortcode\' );
将其添加到
functions.php
或您的插件,然后在您的内容中使用它,如下所示:
普通文本【htmlcomment】注释掉文本【htmlcomment】