Post order by custom fields

时间:2011-11-04 作者:nilesh poman

<?php query_posts( \'cat=16\'); ?>
        <?php if ( have_posts() ) 
        while ( have_posts() ) : the_post(); ?>     

                      <?php print_custom_field(\'time\'); ?>
                       <?php the_title(); ?>

<?php endwhile;?>
这是我的查询,我希望帖子按ASC中的自定义字段“时间”排序

1 个回复
SO网友:Rarst

这可能是这样的:

query_posts( array(
                  \'cat\' => \'16\',
                  \'order\' => \'ASC\',
                  \'orderby\' => \'meta_value\',
                  \'meta_key\' => \'time\',
             ) );
请参见WP_Query 有关更多信息,请参阅Codex中的文档。

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post