标签: php wordpress
我希望在帖子标题之后发布2014年10月22日的发布日期。
我使用the_title();作为帖子标题 但是我怎么能得到这个日期?
the_title();
答案 0 :(得分:7)
使用the_date()或get_the_date()功能。直接:
the_date()
get_the_date()
<?php the_date(); ?>
或用<h2>标签包裹它(例如):
<h2>
<?php get_the_date('F M Y', '<h2>', '</h2>'); ?>