Php Orderby标题和订单asc不适用于特殊字符

Php Orderby标题和订单asc不适用于特殊字符,php,wordpress,Php,Wordpress,我的问题是: $the_query = new WP_Query(array( 'orderby' => 'title', 'order' => 'ASC', 'showposts' => -1 )); 但它显示不真实(请访问)。”在“b”之前和“b”之前。请尝试以下操作: $the_query = new WP_Query(array( 'orderby' => 'title', 'order' => 'ASC',

我的问题是:

$the_query = new WP_Query(array(
'orderby'   => 'title',
'order'     => 'ASC',
'showposts' => -1
));
但它显示不真实(请访问)。”在“b”之前和“b”之前。请尝试以下操作:

$the_query = new WP_Query(array(
    'orderby'   => 'title',
    'order'     => 'ASC',
    'posts_per_page' => -1
));
您需要使用:

$the_query = new WP_Query(array(
    'orderby' => array( 'title' => 'ASC' ),
    'showposts' => -1
));
您还可以按多个参数排序,如:

$the_query = new WP_Query(array(
    'orderby' => array( 'menu_order' => 'ASC', 'title' => 'ASC', 'post_date' => 'DESC' ),
    'showposts' => -1
));
我看不到页面-“此网页有重定向循环”