I want to get all the data by wp_query only the first letter of title specific alphabet 'A'.
My code will be like:
$the_query = new WP_Query( array(
'posts_per_page'=>10,
'post_type'=>'trade-name',
'orderby'=> 'title',
'starts_with' => 'A',
'order' => 'ASC',
'paged' => get_query_var('paged') ? get_query_var('paged') : 1)
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745584155a4634427.html
评论列表(0条)