posts_per_page 和偏移量不起作用。怎么了?
posts_per_page and offset aren't working. Whats wrong?
所以我正在使用以下代码:
<?php
$args = array('posts_per_page'=>4, 'offset'=>1);
$the_query = new WP_Query($args);
if (have_posts()) : while ( have_posts() ) : the_post();
endwhile;endif; wp_reset_postdata();?>
但似乎我的阵列被完全忽略了。怎么了?
$the_query = get_posts( $args );
应该可以使用 foreach
而不是 while
。
这应该可以解决您的问题。
如果你在ajax中使用你可以尝试添加post_status => "publish"
来查询。
所以我正在使用以下代码:
<?php
$args = array('posts_per_page'=>4, 'offset'=>1);
$the_query = new WP_Query($args);
if (have_posts()) : while ( have_posts() ) : the_post();
endwhile;endif; wp_reset_postdata();?>
但似乎我的阵列被完全忽略了。怎么了?
$the_query = get_posts( $args );
应该可以使用 foreach
而不是 while
。
这应该可以解决您的问题。
如果你在ajax中使用你可以尝试添加post_status => "publish"
来查询。