我尝试了post__not_in参数,但它只是删除了所有帖子。太好了。
这是我当前的查询
<?php
$temp = $wp_query;
$wp_query= null;
$wp_query = new WP_Query(array(
'post_type' => 'case-study',
'paged' => $paged,
));
while ($wp_query->have_posts()) : $wp_query->the_post();
?>
谢谢
#1 楼
我想这很沉重,但是为了回答您的原始问题,我在第一个循环中将所有帖子ID收集在一个数组中,并使用“ post__not_in”从第二个循环中排除了那些帖子,这些帖子期望一个帖子ID的数组<?php
$args1 = array('category_name' => 'test-cat-1', 'order' => 'ASC');
$q1 = new WP_query($args);
if($q1->have_posts()) :
$firstPosts = array();
while($q1->have_posts()) : $q1->the_post();
$firstPosts[] = $post->ID; // add post id to array
echo '<div class="item">';
echo "<h2>" . get_the_title() . "</h2>";
echo "</div>";
endwhile;
endif;
/****************************************************************************/
// array of post id's collected in first loop, can now be used as value for the 'post__not_in' parameter in second loops query $args
$args2 = array('post__not_in' => $firstPosts, 'order' => 'ASC' );
$q2 = new WP_query($args2);
if($q2->have_posts()) :
while($q2->have_posts()) : $q2->the_post();
echo '<div class="item">';
echo "<h2>" . get_the_title() . "</h2>";
echo "</div>";
endwhile;
endif;
?>
第一个循环显示类别中的所有帖子,并将帖子ID收集到数组中。
第二个循环显示所有帖子,从第一个循环中排除帖子。
#2 楼
您要查找的参数是post__not_in
(kaiser的回答中有错字)。所以代码可能像这样:<?php
$my_query = new WP_Query(array(
'post__not_in' => array(278),
'post_type' => 'case-study',
'paged' => $paged,
));
while ($my_query->have_posts()) : $my_query->the_post(); endwhile;
WP_Query post__not_in文档
评论
您知道,有些编辑可以纠正错别字:)
– kaiser
2014年10月12日13:25
@Ziki数组中的逗号不是错字,它是有效的PHP语法,如果那是您的意思。
–狮子座
17年6月21日在18:17
@leonziyo-不,他原来那里是“ posts__not_in”而不是“ post__not_in”,请参阅他的回答的历史记录。昏迷没事
– Ziki
17年6月22日在21:15
@Ziki我不确定我是否会感到昏迷:D
– kaiser
20-10-4在22:38
#3 楼
您必须将post__not_in
arg定义为数组。即使是单个值。并且请不要用临时的东西覆盖全局核心变量。#4 楼
备用代码;排除类别帖子
<?php
add_action('pre_get_posts', 'exclude_category_posts');
function exclude_category_posts( $query ) {
if($query->is_main_query() && $query->is_home()) {
$query->set('cat', array( -22, -27 ));
}
}
从主页上删除帖子
<?php
add_action('pre_get_posts', 'wpsites_remove_posts_from_home_page');
function wpsites_remove_posts_from_home_page( $query ) {
if($query->is_main_query() && $query->is_home()) {
$query->set('category__not_in', array(-1, -11));
}
}
评论
另一方面,有没有一种方法可以将wp-pagenavi添加到第二个查询中?
–迪恩·埃利奥特(Dean Elliott)
2012-09-15 22:21
万一您重新回答了您的问题:请修正您的代码标记/意图。谢谢。
– kaiser
14-10-12在13:27