我有一个自定义帖子类型''产品',我想显示前两个,然后拉入所有剩余的帖子以显示在页面的单独部分。什么是最好的方法呢?
答案 0 :(得分:0)
尝试这种方式:
第一个WP_Query
对象会为您提供前两个帖子。然后将前两个帖子的ID存储在数组中,并将该数组传递到第二个post__not_in
对象的WP_Query
参数中。
$args = array(
'posts_per_page' => 2,
'post_type' => 'product',
);
$query_1 = new WP_Query( $args );
$exclude_posts = array();
while ( $query_1->have_posts() ) {
$query_1->the_post();
echo '<li>' . get_the_title() . '</li>';
$exclude_posts[] = get_the_ID();
}
$args = array(
'posts_per_page' => -1,
'post_type' => 'product',
'post__not_in' => $exclude_posts
);
$query_2 = new WP_Query( $args );
while ( $query_2->have_posts() ) {
$query_2->the_post();
echo '<li>' . get_the_title() . '</li>';
$exclude_posts[] = get_the_ID();
}