WP_query按自定义字段排序

时间:2014-06-02 03:53:17

标签: php wordpress

'post_type'=> 'training',
'meta_key' => 'WTF_date',
'orderby' => 'meta_value',
'order' => ASC

这就是我正在使用的,我希望它按自定义字段中的日期排序。谢谢!

1 个答案:

答案 0 :(得分:1)

你可以试试这个:

$args = array(
    'post_type'=> 'training',
    'meta_key' => 'WTF_date',
    'orderby' => 'meta_value',
    'order' => 'ASC'
);

$the_query = new WP_Query($args);
if ($the_query->have_posts()) :
    while ($the_query->have_posts()) : $the_query->the_post();
        ?><h2><?php the_title(); ?></h2><?php
        <!-- more... -->
    endwhile;
endif;

查看更多on Codex