0

我在我的 wordpress 自定义主题模板中使用以下代码

<p id="news"> <?php echo apply_filters('the_content',$myNews)?></p>;

所需的输出应该是这样的

<p id="news"> Herer goes my news content from $myNewsvariable </p>

但我得到这样的输出

<p id="news"></p>Here goes my news content from $myNewsvariable 

请告诉我如何解决这个问题

4

1 回答 1

1

the_content函数默认打印出内容。echo所以之前不需要做重复apply_filters

您也可以将过滤器应用于get_the_content

<?php echo apply_filters('get_the_content', $myNews); ?>
于 2013-10-26T17:58:53.527 回答