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。