wordpress 首页不显示指定分类的文章

把下面的代码复制到主题functions.php文件中。

function excludeCat($query) {
	if ( $query->is_home ) {
		$query->set('cat', '-1,-2');
	}
		return $query;
	}
add_filter('pre_get_posts', 'excludeCat');

-1,-2就是要排除的id

  1. 暂无评论

  1. 暂无 Trackback

return top