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从主循环中排除类别的主要内容,如果未能解决你的问题,请参考以下文章