Wordpress add_filter('the_content无法正常工作

时间:2013-09-26 13:27:32

标签: wordpress post

 add_filter('the_content','filter_trendland_content',99999);

//create a the function to get the content of the page by using the hook the_content
function filter_trendland_content($content) {

    $content = "Blank content";
    return $content;

}

我尝试使用上面的过滤器,但它在页面中工作,而不是在post.Is有任何更改,在我应该做什么这个过滤器工作posts.It显示文本“空白内容”但是使用post data.please help。

0 个答案:

没有答案