IT技术 March 03, 2014
March 3, 2014
wordpress排除特定分类文章的方法
如果想将一些特定分类中的文章不在wordpress的Blog页面显示,下面的方法可以帮你方便地排除特定分类的文章。 复制下面的代码到你的主题functions.php文件: function exclude_category_home( $query ) { if ( $query->is_home ) { $query->set( ‘cat’, ‘-5, -34’ ); } return $query; } ...