因此,我为我的每个帖子提供了一个定制的日期字段(‘data_vento’),格式为:d/m/y。
目标:在这个定制的日期对帖子进行排序。最新最多的在上面。
我尝试了一些在线方法,但我不能让它们在我的WordPress代码中真正工作(所以我不会转载任何方法)。
我寻求帮助,从我现在的模板中获得的默认代码开始,即:
<?php
/* Start the Loop */
while ( have_posts() ) :
the_post();
?>
<div class="col">
<?php get_template_part( 'template-parts/content-home', get_post_type() ); ?>
</div>
<?php
endwhile;
?>
提前谢谢!
1条答案
按热度按时间gab6jxml1#
已解决。