WordPress-我如何将分类帖子与主要帖子混在一起

时间:2018-06-21 09:56:29

标签: php mysql wordpress wordpress-shortcode

我使用以二十四为主题的wordpress。在右侧栏上,我已经具有显示最热门的最新文章的小部件。因此,我想从主要帖子中删除特色帖子,以避免重复。Here is the link to my website

duplicate in main posting section and latest featured post section

在上面的示例中,您可以看到“ PROPERTY LAUNCH”帖子在主帖子和右侧的特色帖子中重复。

如何解决此问题,以使精选的分类帖子不会出现在主要帖子中?

1 个答案:

答案 0 :(得分:0)

搜索了几个小时之后,我终于从这个wp explorer网站上找到了解决问题的方法。此代码将从主要帖子中删除特色类别中的帖子。

 function exclude_category($query) {
        if ( is_home() ) {
            $query->set( 'cat', '-23' ); //23 refers to the my featured category id
        }
        return $query;
    }
    add_filter( 'pre_get_posts', 'exclude_category' );