如何在WP_Query中执行LIMIT 1,2

时间:2015-01-22 13:43:28

标签: php wordpress

我正在使用Wp_Query方法,我想学习是否有任何参数来限制我的查询。 我尝试在WP_Query中使用LIMIT 1,2。 谢谢你提前!

$args = array(
'post_type'     => 'post',
'post_status'   => 'publish',
'orderby' => 'ID',
'order'   => 'DESC',
'meta_query'    => array(
                        array(
                            'key'     => 'featured',
                            'value'   => 'evet',
                            'compare' => '='
                        )
                    )
);

// The Query
$the_query = new WP_Query( $args );

1 个答案:

答案 0 :(得分:1)

您可以使用 posts_per_page 偏移 args { - 1}},如下所示: -

WP_Query()

了解更多信息: - http://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters

你要求LIMIT 1,2(意味着偏移,计数(多少行))所以

$query = new WP_Query( array( 'posts_per_page' => 5, 'offset' => 3 ) );