我正在处理子主题,并且需要按自定义字段日期而不是 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">→</span>', 'vantage' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'vantage' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
我对 php 和 wordpress 很陌生。我正在研究儿童主题。我需要添加什么代码,以便帖子按自定义字段日期排序,我需要把它放在哪里?