知道为什么在使用文件the_content filter
时不应用吗?front-page.php
下面的代码在使用时没有被执行front-page.php
;与index.php, page.php etc..
function some_filter_name($content){
echo "dummy text";
return $content;
}
add_filter( 'the_content', 'some_filter_name' );
更新:确保您实际
the_content()
在页面上使用。the_content
过滤器仅适用于the_content
元素 - 即您必须在模板中使用它