我有两种帖子类型,常规帖子和自定义帖子类型。一切正常,我只显示 5 个帖子。一个是完整的帖子,四个是摘录。我的问题是摘录显示的是最新的帖子,与帖子类别无关。我想显示两个帖子和两个自定义帖子类型。
$args = array(
'post_type' => array( 'post', 'tutorial' ),
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) :
$count = 0;
while ( $query->have_posts() ) : $query->the_post();
if ( $count == 0 ) { ?>
<h2><?php the_title(); ?></h2>
<?php the_content();
$count ++;
} else { ?>
<h2><?php the_title(); ?></h2>
<?php the_excerpt();
}
endwhile;
endif;
wp_reset_postdata();
?>
预期的输出应该是最新的帖子作为完整的帖子,因为它现在正在工作。然后它应该显示帖子类型帖子的两个最新帖子和帖子类型教程的两个最新帖子。
开满天机