Wordpress的comment_text()函数自动添加<p> </p>

时间:2018-03-26 20:11:31

标签: php html wordpress

代码为:

<?php comment_text(); ?>

它的输出是:

<p>Comment text</p>

当我将其更改为:

<p><?php comment_text(); ?></p>

它的输出变为:

<p></p>
<p>Comment text</p>

问题是: 我可以删除自动成为的<p></p>标记吗?并添加我的<p></p>标记或不添加任何内容?

1 个答案:

答案 0 :(得分:2)

使用get_comment_text()获取不显示的文字:

<p><?php echo get_comment_text(); ?><p>

然后你可以做任何你想做的事,比如

<p class="myClass"><?php echo get_comment_text(); ?><p>

https://codex.wordpress.org/Function_Reference/get_comment_text