在HTML编辑器中注释掉中断模板

时间:2012-10-05 作者:ultraloveninja

我需要在Wordpress的HTML编辑器中对HTML的某一部分进行注释。但当我这样做时,它破坏了HTML。查看源代码后,我注意到它转换了以下内容的结尾注释:

-->
对此:

–>
有人知道如何在编辑器中注释出HTML代码而不将其转换为该字符吗?

1 个回复
SO网友:Tom J Nowell

我的最后一条评论提醒了我关于短代码的问题,并引导我得出以下答案:

function htmlcomment_shortcode( $atts, $content = null ) {
   return \'<!-- \' . $content . \' -->\';
}
add_shortcode( \'htmlcomment\', \'htmlcomment_shortcode\' );
将其添加到functions.php 或您的插件,然后在您的内容中使用它,如下所示:

普通文本【htmlcomment】注释掉文本【htmlcomment】

结束

相关推荐

如何对函数的输出进行json_encode?

如何对用于获取帖子所有附加图像的函数的输出进行json\\U编码?<?php function get_all_images($postid=0, $size=\'bigger\', $attributes=\'\') { if ($postid<1) $postid = get_the_ID(); if ($images = get_children(array( \'post_parent\' => $postid,&#