3
 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;

}

我尝试使用上面的过滤器,但它在页面中而不是在帖子中工作。在其他页面中是否有任何更改要我做什么这个过滤器为帖子工作。它显示文本“空白内容”但与帖子数据。请帮忙。

4

0 回答 0