wordpress首页排查指定分类下的文章

2024年10月14日 建站教程

wordpress建站中,如何让首页不显示指定分类下的文章,下面web建站小编给大家简单介绍一下具体实现代码!

打开主题下的 functions.php 文件,新增以下代码:

function exclude_category_home( $query ) {
  if ( $query->is_home ) {
    $query->set( 'cat', '-10, -122, -180' ); //要排除的分类ID,id前面有负号
  }
  return $query;
}

add_filter( 'pre_get_posts', 'exclude_category_home' );

这样首页就不显示ID=10,122,180分类下的文章~

本文链接:http://so.lmcjl.com/news/15361/

展开阅读全文