php wordpress从主循环中排除类别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php wordpress从主循环中排除类别相关的知识,希望对你有一定的参考价值。

<?php

/* 999 = category id */

add_action('pre_get_posts', 'fixer_exclude_category');

function fixer_exclude_category($query) {
  if ($query->is_home()) {
   $query->set('cat', '-999');
  }
  return $query;
}

以上是关于php wordpress从主循环中排除类别的主要内容,如果未能解决你的问题,请参考以下文章

PHP 从Wordpress中的搜索结果中排除特定类别

PHP Wordpress从主页面或首页中排除某些类别ID

PHP 排除辅助前页上的WordPress类别

PHP 从WordPress中的循环中排除粘滞帖子

Wordpress:使用 post__not_in 排除自定义分类类别

Wordpress从主页或首页排除某些类别ID