使帖子按标题降序(_P)

时间:2020-04-16 作者:njinok

我有自定义的帖子类型“电影”列表,我想按标题降序排列。目前,它按帖子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新手?

1 个回复
SO网友:Kevin

我想你缺的部分就是订单。尝试以下操作:

\'post_type\' => \'movies\',
\'orderby\' => \'title\',
\'order\'   => \'ASC\',

相关推荐

从商店页面的前面部分删除Storefront-Sorting div

我已经发现,我可以使用以下方法从商店页面中删除排序下拉菜单和分页:function delay_remove() { remove_action( \'woocommerce_after_shop_loop\', \'woocommerce_catalog_ordering\', 10 ); remove_action( \'woocommerce_before_shop_loop\', \'woocommerce_catalog_ordering\', 10 ); remove_