single_month_title

函数
single_month_title ( $prefix = '', $display = true )
参数
  • (string) $prefix Optional. What to display before the title.
    Required:
    Default: (empty)
  • (bool) $display Optional. Whether to display or retrieve title. Default true.
    Required:
    Default: true
返回值
  • (string|false|void) False if there's no valid title for the month. Title when retrieving.
定义位置
相关方法
single_post_titlesingle_tag_titlesingle_cat_titlesingle_term_titleget_the_title
引入
0.71
弃用
-

single_month_title: 这个函数用来显示单月档案页的标题。它需要两个可选参数–$prefix和$display–用于为标题添加前缀,并控制标题是否在屏幕上显示或以字符串形式返回。

根据日期显示或检索文章存档的页面标题。

当模板只需要显示月份和年份(如果有的话)时很有用。前缀之间不会自动放置空格,所以如果应该有空格,参数值需要在最后。

function single_month_title( $prefix = '', $display = true ) {
	global $wp_locale;

	$m        = get_query_var( 'm' );
	$year     = get_query_var( 'year' );
	$monthnum = get_query_var( 'monthnum' );

	if ( ! empty( $monthnum ) && ! empty( $year ) ) {
		$my_year  = $year;
		$my_month = $wp_locale->get_month( $monthnum );
	} elseif ( ! empty( $m ) ) {
		$my_year  = substr( $m, 0, 4 );
		$my_month = $wp_locale->get_month( substr( $m, 4, 2 ) );
	}

	if ( empty( $my_month ) ) {
		return false;
	}

	$result = $prefix . $my_month . $prefix . $my_year;

	if ( ! $display ) {
		return $result;
	}
	echo $result;
}

常见问题

FAQs
查看更多 >