要显示月份,请将其放置在模板中希望日期显示的位置:
<?php the_date(\'F m\'); ?>
这将显示完整的月份名称和日期。如果您只想使用月份的缩写,如Aug.您可以使用:
<?php the_date(\'M.\'); ?>
放置在前面
<?php the_the_permalink(); ?>
下面是一个完整的示例,将其与标题一起使用:
<h2><?php the_date(\'M.\'); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>