0

我正在处理子主题,并且需要按自定义字段日期而不是 wordpress 发布日期对类别帖子进行排序。谁能指出我正确的方向?

这是我的content-single.php文件中的内容:

        <h1 class="info"><?php the_field('start_date'); ?> - <?php the_field('end_date'); ?></h1>
        <h1 class="info"><?php the_field('time'); ?></h1>
        <h1 class="info"><?php the_field('venue'); ?></h1>
        <a href="<?php the_field('tickets_link'); ?>"><h1 class="buytix">BUY TICKETS<?php the_field('buy_tickets'); ?></h1></a>

        <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'vantage' ) ); ?>
        <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'vantage' ), 'after' => '</div>' ) ); ?>
    </div><!-- .entry-content -->

我对 php 和 wordpress 很陌生。我正在研究儿童主题。我需要添加什么代码,以便帖子按自定义字段日期排序,我需要把它放在哪里?

4

1 回答 1

0

您可以简单地在 WP_query() 中指定:

参见示例: http ://codex.wordpress.org/Function_Reference/WP_Query#Order_.26_Orderby_Parameters

于 2014-06-10T03:36:33.770 回答