Uses
Uses | Description |
---|---|
wp-includes/query.php: get_query_var() | Retrieve variable in the WP_Query class. |
wp-includes/class-wp-locale.php: WP_Locale::get_month() | Retrieve the full translated month by month number. |
Display or retrieve page title for post archive based on date.
Useful for when the template only needs to display the month and year, if either are available. The prefix does not automatically place a space between the prefix, so if there should be a space, the parameter value will need to have it at the end.
(string) (Optional) What to display before the title.
Default value: ''
(bool) (Optional) Whether to display or retrieve title.
Default value: true
(string|void) Title when retrieving.
m
or archive month argument has been passed by WordPress to the current page (this occurs when viewing a monthly archive page).File: wp-includes/general-template.php
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; }
Version | Description |
---|---|
0.71 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/single_month_title