自定义帖子类型不包括分类帖子
Posted
技术标签:
【中文标题】自定义帖子类型不包括分类帖子【英文标题】:Custom post type exclude taxonomy posts 【发布时间】:2013-08-28 19:53:39 【问题描述】:我有一个名为 art_design 的自定义帖子类型,并且我有一个名为 artdesign_mainslider 的分类,在一个循环中我只有来自分类 artdesign_mainslider 的帖子,而在另一个循环中我有来自自定义帖子类型 art_design 的帖子,但我想排除分类法?
第一个循环:
<?php
$args = array( 'artdesign_mainslider' => 'art-design-featured-post', 'posts_per_page' => 5 );$loop = new WP_Query( $args );while ( $loop->have_posts() ) : $loop->the_post(); ?><?php endwhile; ?>
第二个循环(我想排除 artdesign_mainslider):
<?php
$args = array( 'post_type' => 'art_design', 'posts_per_page' => 10, );$loop = new WP_Query( $args );while ( $loop->have_posts() ) : $loop->the_post(); ?><?php endwhile; ?>
【问题讨论】:
【参考方案1】:您必须使用tax_query
参数。请参阅http://www.wpexplorer.com/exclude-taxonomy-wordpress/ 了解您正在尝试做什么的完美示例,并参阅http://codex.wordpress.org/Class_Reference/WP_Query 了解tax_query
的参考。
【讨论】:
以上是关于自定义帖子类型不包括分类帖子的主要内容,如果未能解决你的问题,请参考以下文章