我想知道如何保持帖子的日期显示在页面的博客上。但是每个帖子都没有显示日期。
url:ichooseapp.com/blog
<div class="tiemsec1">
<div class="timetitle1"><a href='<?php the_permalink() ?>'><?php get_the_date(); //the_date('d.m.y'); ?></a></div>
<p>by <?php echo get_the_author(); ?> </p>
</div>
任何人都可以帮助我吗?
答案 0 :(得分:0)
get_the_date();功能需要回声; 如
echo get_the_date();
为什么你没有使用不需要回显
的the_date()函数