从WordPress博客页面筛选类别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从WordPress博客页面筛选类别相关的知识,希望对你有一定的参考价值。
Ever want to filter out a category from your blog page. Here's how you do it! Just add this snippet to your functions.php file.
/* The Number 611 is my category ID number. Please replace this with your own! Add this snippet to your functions.php file. */ function exclude_cat($query) { if ( $query->is_home) { $query-> set('cat','-611'); } return $query; } add_filter('pre_get_posts','exclude_cat');
以上是关于从WordPress博客页面筛选类别的主要内容,如果未能解决你的问题,请参考以下文章
用于 WordPress 的 PHP 片段,用于获取所有产品子类别