我怎样才能从档案馆得到月份的名称?

时间:2011-09-24 作者:srisar

我已经创建了一个存档页。。我想显示哪个存档月份的位置。。如何显示月份名称?

2 个回复
SO网友:user2019515

如果要获取当前存档页的月份,必须使用single_month_title. 以下代码将输出“August 2014”(注意该月之前的空格)

<?php single_month_title(\' \') ?>
月前无空格:

<?php echo trim(single_month_title(\' \',false)) ?>
阅读更多:http://codex.wordpress.org/Function_Reference/single_month_title

SO网友:Jeremy Jared

要显示月份,请将其放置在模板中希望日期显示的位置:

<?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>

结束

相关推荐

显示Archives.php中的所有自定义帖子类型

我该怎么做?archive.php 只有以下内容:wp_get_archives(\'type=monthly\'); 以及wp_get_archives() 没有显示所有帖子类型的参数。我也认为archive-[post_type].php 不是我要找的,因为我希望所有帖子类型都显示在一个归档页面中。谢谢W