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


如果在Ajax中使用, 则可以尝试添加post_status =>” publish”进行查询。

来源:

https://www.srcmini02.com/63782.html

微信公众号
手机浏览(小程序)
0
分享到:
没有账号? 忘记密码?