我有以下代码来合并3个不同的查询:
<div class="features-list">
<?php
$args1 = array (
\'post_type\' => \'page\',
\'post__not_in\' => array(2, 48, 50, 52, 54, 56, 61, 116, 129, 58665, 58666, 58667, 58668, 57800, 62883, 74802, 75597, 75599, 75601, 75609),
\'orderby\' => \'date\',
\'order\' => \'DESC\',
\'meta_key\' => \'_wp_page_template\',
\'meta_value\' => \'template-features.php\'
);
$query1 = new WP_Query( $args1 );
// If there are results, then push the IDs into an array
$query1_posts = array();
if ( $query1->have_posts() ) {
while( $query1->have_posts() ) {
$query1->the_post();
array_push( $query1_posts, get_the_ID() );
}
}
wp_reset_postdata();
$args2 = array (
\'post_type\' => \'page\',
\'orderby\' => \'date\',
\'order\' => \'DESC\',
\'meta_key\' => \'feature_type\',
\'meta_value\' => \'guide\'
);
$query2 = new WP_Query( $args2 );
// If there are results, then push the IDs into an array
$query2_posts = array();
if ( $query2->have_posts() ) {
while( $query2->have_posts() ) {
$query2->the_post();
array_push( $query2_posts, get_the_ID() );
}
}
wp_reset_postdata();
$args3 = array (
\'post_type\' => \'new_features\',
\'orderby\' => \'date\',
\'order\' => \'DESC\',
\'meta_key\' => \'feature_type\',
\'meta_value\' => \'guide\'
);
$query3 = new WP_Query( $args3 );
// If there are results, then push the IDs into an array
$query3_posts = array();
if ( $query3->have_posts() ) {
while( $query3->have_posts() ) {
$query3->the_post();
array_push( $query3_posts, get_the_ID() );
}
}
wp_reset_postdata();
$results = array_unique ( array_merge( $query1_posts, $query2_posts, $query3_posts ) );
// WP_Query arguments
$the_args = array (
\'post__in\' => $results
);
// The Query
$the_query = new WP_Query( $the_args );
$count = 1;
if ( $the_query->have_posts() ) {
while ($the_query -> have_posts()) {
$the_query -> the_post();
?>
<article class="<?php if ($count == 1) { ?>g1_2<? } else { ?>g1_4<?php } ?>">
<div class="feature_image">
<a href="<?php the_permalink(); ?>"><?php if ($count == 1) { the_post_thumbnail(\'full\'); } else { the_post_thumbnail(\'thumbnail\'); } ?></a>
<div class="feature_title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></div>
</div>
<p><?php the_excerpt();?></p>
</article>
<?php
$count++;
}
}
wp_reset_postdata();
?>
</div><!-- .features-list -->
我知道$results具有我需要的所有post id,但$the\\u查询仍然没有返回post。
我错过了什么。到目前为止,我至少重写了10次这段代码。