Definition:
function the_weekday() {}
Display the weekday on which the post was written.
Defined filters
- the_weekday
apply_filters('the_weekday', $the_weekday)
Source code
function the_weekday() { global $wp_locale, $post; $the_weekday = $wp_locale->get_weekday(mysql2date('w', $post->post_date, false)); $the_weekday = apply_filters('the_weekday', $the_weekday); echo $the_weekday; }
3057
No comments yet... Be the first to leave a reply!