从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.
  1. /* The Number 611 is my category ID number. Please replace this with your own!
  2.   Add this snippet to your functions.php file. */
  3.  
  4. function exclude_cat($query) {
  5. if ( $query->is_home) {
  6. $query-> set('cat','-611');
  7. }
  8. return $query;
  9. }
  10.  
  11. add_filter('pre_get_posts','exclude_cat');

以上是关于从WordPress博客页面筛选类别的主要内容,如果未能解决你的问题,请参考以下文章

用于 WordPress 的 PHP 片段,用于获取所有产品子类别

WordPress 博客,仅对当前页面使用存档?

PHP Wordpress查询从帖子/页面中提取片段

Wordpress阻止访问wp admin€“wpsnipp.com网站你博客的Wordpress代码片段

PHP 从Wordpress类别页面中删除RSS源

Wordpress查询从文章/页面中提取片段