the_weekday_date filter-hook . WP 0.71
Filters the localized date on which the post was written, for display.
Usage
add_filter( 'the_weekday_date', 'filter_function_name_9577', 10, 3 ); function filter_function_name_9577( $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
wp-includes/general-template.php 2989
echo apply_filters( 'the_weekday_date', $the_weekday_date, $before, $after );