posts_per_page和offset无效。怎么了()

所以我正在使用以下代码:

< ?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(); ?>

但是似乎我的数组被完全忽略了。怎么了?
#1
$the_query = get_posts( $args );

它应该工作并使用foreach而不是一会儿。这应该可以解决你的问题。
#2【posts_per_page和offset无效。怎么了()】如果在Ajax中使用, 则可以尝试添加post_status => ” publish” 进行查询。

    推荐阅读