我创建了一个插件,因为我有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
);
当我评论偏移时它工作正常,但我也想要偏移,所以请帮我解决问题