Displays the weekday on which the post was written.
Source
function the_weekday() {
global $wp_locale;
$post = get_post();
if ( ! $post ) {
return;
}
$the_weekday = $wp_locale->get_weekday( get_post_time( 'w', false, $post ) );
/**
* Filters the weekday on which the post was written, for display.
*
* @since 0.71
*
* @param string $the_weekday
*/
echo apply_filters( 'the_weekday', $the_weekday );
}
Hooks
- apply_filters( ‘the_weekday’,
string $the_weekday ) Filters the weekday on which the post was written, for display.
Changelog
Version | Description |
---|---|
0.71 | Introduced. |
Displays the day of the week on which the currently looped posts have been published.