如何在Wordpress CMS上使用PHP按字母顺序对数组进行排序?
<?php if( count($terms_array) > 0 ) : foreach($terms_array as $term) : ?>
<?php
$term = '';
$args = array(
'post_type' => 'book',
'posts_per_page' => -1,
'orderby' => 'menu_order',
'order' => 'ASC'
);
$books_query = new WP_Query( $args );
?>
<?php if ( $books_query->have_posts() ) : ?>
答案 0 :(得分:0)
在php中使用默认排序功能。假设你要排序的$ terms_array,
{{1}}
答案 1 :(得分:0)
真的可以使用PHP函数对数组进行排序,这里是文档(http://php.net/manual/en/array.sorting.php)。但是,可以按标题对wp帖子进行排序。这是链接https://codex.wordpress.org/Alphabetizing_Posts
的问候。 编