dongsu3654 2017-07-13 09:51
浏览 14
已采纳

无法按字母顺序排列目的地

I have unordered destinations, which i print in the following way:

$destinations = get_posts( array(
                            'post_type' => 'destination_showcase',
                            'posts_per_page' => -1,
                            'post_status' => 'publish',
                            'meta_query' => array(
                                array(
                                    'key' => 'destination_state',
                                    'value' => ':"'.$state_id . '";' , // looking for serialized value in quotes
                                    'compare' => 'LIKE'
                                )
                            ),
                        ) );

I want to print the destinations alphabetically. When i var_dump-ed the #destinations array i got all of the destinations and their parameters. I want to get their titles i.e "post_title" and print it alphaberically. I've tried this, but doesn't work:

'orderby'=> $destinations->post_title, 'order' => 'ASC',

Any ideas how the task can be done ?

  • 写回答

2条回答 默认 最新

  • drtohng5613 2017-07-13 09:57
    关注

    just try this

    $destinations = get_posts( array(
        'post_type' => 'destination_showcase',
        'posts_per_page' => -1,
        'post_status' => 'publish',
        'orderby' => 'title',
        'order' => 'ASC',
        'meta_query' => array(
            array(
                'key' => 'destination_state',
                'value' => ':"'.$state_id . '";' , // looking for serialized value in quotes
                'compare' => 'LIKE'
            )
        ),
    ) );
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 救!ENVI5.6深度学习初始化模型报错怎么办?
  • ¥30 eclipse开启服务后,网页无法打开
  • ¥30 雷达辐射源信号参考模型
  • ¥15 html+css+js如何实现这样子的效果?
  • ¥15 STM32单片机自主设计
  • ¥15 如何在node.js中或者java中给wav格式的音频编码成sil格式呢
  • ¥15 不小心不正规的开发公司导致不给我们y码,
  • ¥15 我的代码无法在vc++中运行呀,错误很多
  • ¥50 求一个win系统下运行的可自动抓取arm64架构deb安装包和其依赖包的软件。
  • ¥60 fail to initialize keyboard hotkeys through kernel.0000000000