有条件的" the_content"过滤wordpress

时间:2017-01-10 10:23:36

标签: php wordpress wordpress-theming

我为" the_content"添加了一个过滤器在functions.php中

add_filter ('the_content', 'testFilter');
function testFilter($content) {
  if(is_single()) {
    $content.="Append content";
  }
  return $content;
} 

现在在我的content-post.php中。我有以下几行:

the_content(__('Test;', 'tag') );

如何排除testFilter应用于content-post.php页面?

1 个答案:

答案 0 :(得分:0)

在函数<field name="_root_" type="string" docValues="false" indexed="true" stored="false"/> <field name="_text_" type="text_general" multiValued="true" indexed="true" stored="false"/> <field name="_version_" type="long" indexed="false" stored="false"/> <field name="id" type="string" multiValued="false" indexed="true" required="true" stored="true"/> <field name="info.first_name" type="strings"/> <field name="info.gender" type="strings"/> <field name="info.last_name" type="strings"/> 上方添加remove_filter函数。

the_content(__('Test;','tag'))