所以我正在使用以下代码:
<?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();?>
但是似乎我的数组被完全忽略了。怎么了?
答案 0 :(得分:0)
$the_query = get_posts( $args );
它应该可以工作并使用foreach
而不是while
。
这应该可以解决您的问题。
答案 1 :(得分:0)
如果您在Ajax中使用,则可以尝试添加post_status => "publish"
进行查询。