the_weekday_date filter-hookWP 0.71

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

Usage

add_filter( 'the_weekday_date', 'wp_kama_the_weekday_date_filter', 10, 3 );

/**
 * Function for `the_weekday_date` filter-hook.
 * 
 * @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.
 *
 * @return string
 */
function wp_kama_the_weekday_date_filter( $the_weekday_date, $before, $after ){

	// filter...
	return $the_weekday_date;
}
$the_weekday_date(string)
The weekday on which the post was written.
$before(string)
The HTML to output before the date.
$after(string)
The HTML to output after the date.

Changelog

Since 0.71 Introduced.

Where the hook is called

the_weekday_date()
the_weekday_date
wp-includes/general-template.php 3036
echo apply_filters( 'the_weekday_date', $the_weekday_date, $before, $after );

Where the hook is used in WordPress

Usage not found.