the_weekday_date( string $before = , string $after =  )

Displays the weekday on which the post was written.

Description

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

Parameters

$beforestringoptional
Output before the date.

Default:''

$afterstringoptional
Output after the date.

Default:''

Source

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 );
}

Hooks

apply_filters( ‘the_weekday_date’, string $the_weekday_date, string $before, string $after )

Filters the localized date on which the post was written, for display.

Changelog

VersionDescription
0.71Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.