我如何在 WP_Query 中执行 LIMIT 1、2
How Can I Do LIMIT 1, 2 In WP_Query
我正在使用 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 );
您可以对 WP_Query()
使用 posts_per_page 和 offset 参数,例如:-
$query = new WP_Query( array( 'posts_per_page' => 5, 'offset' => 3 ) );
更多:- http://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters
您要求 LIMIT 1,2(表示偏移量,计数(多少行))所以
posts_per_page = count
offset = offset
我正在使用 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 );
您可以对 WP_Query()
使用 posts_per_page 和 offset 参数,例如:-
$query = new WP_Query( array( 'posts_per_page' => 5, 'offset' => 3 ) );
更多:- http://codex.wordpress.org/Class_Reference/WP_Query#Pagination_Parameters
您要求 LIMIT 1,2(表示偏移量,计数(多少行))所以
posts_per_page = count
offset = offset