设置WordPress网站指定分类内容不在首页显示方法

Data:01/03 07:07
2018
01/03
07:07
2018-01-03
functions.php修改
这个方法是比较好的,建议使用。
  1. //在首页中排除某些分类
  2. function exclude_category_home( $query ) {
  3. if ( $query->is_home ) {
  4. $query->set( ‘cat’, ‘-20, -22’ ); //你要排除的分类ID
  5. }
  6. return $query;
  7. }
  8. add_filter( ‘pre_get_posts’, ‘exclude_category_home’ );
domainsworks

About domainsworks

  •