如何在wordpress中检索选定的月份

时间:2014-12-07 00:54:08

标签: wordpress

我需要在wordpress中检索当前选定的月份,但我不知道要使用什么功能。

场景是:

  • 我点击列表中的一个月(比如八月)
  • 我被重定向到包含8月发布的所有帖子的页面

在此页面中,我需要打印月份名称:类似于"您正在浏览 2014年8月"中发布的文章。

我该怎么做?

干杯

2 个答案:

答案 0 :(得分:1)

<?= single_month_title(); ?>

请参阅WP Codex以供使用,但只需将其弹出即可。

答案 1 :(得分:0)

这是捆绑的主题二十四个如何在archive.php中实现这一点。这将显示年度,月度和每日档案的日期

<header class="page-header">

<h1 class="page-title">
    <?php
        if ( is_day() ) :
            printf( __( 'Daily Archives: %s', 'twentyfourteen' ), get_the_date() );

        elseif ( is_month() ) :
            printf( __( 'Monthly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyfourteen' ) ) );

        elseif ( is_year() ) :
            printf( __( 'Yearly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyfourteen' ) ) );

        else :
            _e( 'Archives', 'twentyfourteen' );

        endif;
    ?>
</h1>
</header><!-- .page-header -->