the_weekday_date()
Displays the localized weekday for the post.
Will only output the weekday if the current post's weekday is different from the previous one output.
Hooks from the function
Returns
null. Nothing (null).
Usage
the_weekday_date( $before, $after );
- $before(string)
- Output before the date.
Default:'' - $after(string)
- Output after the date.
Default:''
Notes
- Global. WP_Locale.
$wp_localeWordPress date and time locale object. - Global. String.
$currentdayThe day of the current post in the loop. - Global. String.
$previousweekdayThe day of the previous post in the loop.
Changelog
| Since 0.71 | Introduced. |
the_weekday_date() the weekday date code WP 6.9.1
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 weekday of the post, 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 );
}