the_weekday_date()WP 0.71

Displays the weekday on which the post was written.

Will only output the weekday if the current post's weekday is different from the previous one output.

Хуки из функции

Возвращает

null. Ничего (null).

Использование

the_weekday_date( $before, $after );
$before(строка)
Output before the date.
По умолчанию: ''
$after(строка)
Output after the date.
По умолчанию: ''

Заметки

  • Global. WP_Locale. $wp_locale WordPress date and time locale object.
  • Global. Строка. $currentday The day of the current post in the loop.
  • Global. Строка. $previousweekday The day of the previous post in the loop.

Список изменений

С версии 0.71 Введена.

Код the_weekday_date() WP 6.6.2

function the_weekday_date( $before = '', $after = '' ) {
	global $wp_locale, $currentday, $previousweekday;

	$post = get_post();

	if ( ! $post ) {
		return;
	}

	$the_weekday_date = '';

	if ( $currentday !== $previousweekday ) {
		$the_weekday_date .= $before;
		$the_weekday_date .= $wp_locale->get_weekday( get_post_time( 'w', false, $post ) );
		$the_weekday_date .= $after;
		$previousweekday   = $currentday;
	}

	/**
	 * Filters the localized date on which the post was written, for display.
	 *
	 * @since 0.71
	 *
	 * @param string $the_weekday_date The weekday on which the post was written.
	 * @param string $before           The HTML to output before the date.
	 * @param string $after            The HTML to output after the date.
	 */
	echo apply_filters( 'the_weekday_date', $the_weekday_date, $before, $after );
}