在添加偏移后,分页显示相同的所有帖子

时间:2018-06-13 10:52:17

标签: wordpress

我创建了一个插件,因为我有wp_query循环

$args = array(

            'post_type'         => 'all_news_blurbs',
            'posts_per_page'    =>  7,
            //'post__not_in'        =>  $post_news_id,//array for not including the posts in blurbs page
            'paged'             =>  $paged,
            'tax_query'         =>  $tax_queries,
            'offset'            =>  $myOffset
        );

当我评论偏移时它工作正常,但我也想要偏移,所以请帮我解决问题

0 个答案:

没有答案