我不想在主页上显示正文/post\\u内容为空的帖子。因此,我在函数中添加了以下代码。php。它检测带有空正文的帖子,但仍显示它们。我预计如果返回“”,则不会显示帖子。
我怎样才能remove 是否显示帖子filter the_posts work?代码:
function remove_post_with_empty_body ( $posts ) {
if (($posts->post_content) == \'\') {
echo \'empty\'; //also tried return false; and return null;
return \'\';
}
else {
echo \'not empty\';
return $posts;
}
}
add_action(\'the_post\', \'remove_post_with_empty_body\');