我为" 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页面?
答案 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'))