Changeset 57136 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 11/26/2023 04:41:34 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r57131 r57136 1716 1716 $prefix = _x( 'Author:', 'author archive title prefix' ); 1717 1717 } elseif ( is_year() ) { 1718 /* translators: See https://www.php.net/manual/datetime.format.php */ 1718 1719 $title = get_the_date( _x( 'Y', 'yearly archives date format' ) ); 1719 1720 $prefix = _x( 'Year:', 'date archive title prefix' ); 1720 1721 } elseif ( is_month() ) { 1722 /* translators: See https://www.php.net/manual/datetime.format.php */ 1721 1723 $title = get_the_date( _x( 'F Y', 'monthly archives date format' ) ); 1722 1724 $prefix = _x( 'Month:', 'date archive title prefix' ); 1723 1725 } elseif ( is_day() ) { 1726 /* translators: See https://www.php.net/manual/datetime.format.php */ 1724 1727 $title = get_the_date( _x( 'F j, Y', 'daily archives date format' ) ); 1725 1728 $prefix = _x( 'Day:', 'date archive title prefix' );
Note: See TracChangeset
for help on using the changeset viewer.