我有自定义的帖子类型“电影”列表,我想按标题降序排列。目前,它按帖子id进行排序。代码为:
<?php
if( $movies->have_posts() ) : while( $movies->have_posts() ) : $movies->the_post();
$post_id = get_the_ID();
$the_movie = TMDB()->get_movie_details( $post_id );
?>
我尝试添加一些内容,例如:
<?php
query_posts(array(
\'post_type\' => \'movies\',
\'orderby\' => \'title\'
) );
?>
而且:
<?php query_posts($query_string . \'&orderby=title&order=ASC\');?>
到目前为止还没有成功。我错过了一些东西。谁能在这里帮助php新手?