the_weekday

Advertisement

Summery Summery

Display the weekday on which the post was written.

Syntax Syntax

the_weekday()

Source Source

File: wp-includes/general-template.php

 * @since 2.0.0
 *
 * @param string $format Optional. Either 'G', 'U', or PHP date format defaults
 *                       to the value specified in the time_format option.
 */
function the_modified_time( $format = '' ) {
	/**
	 * Filters the localized time a post was last modified, for display.
	 *
	 * @since 2.0.0
	 *
	 * @param string $get_the_modified_time The formatted time.
	 * @param string $format                The time format. Accepts 'G', 'U',
	 *                                      or PHP date format. Defaults to value
	 *                                      specified in 'time_format' option.
	 */
	echo apply_filters( 'the_modified_time', get_the_modified_time( $format ), $format );
}

/**

Advertisement

Changelog Changelog

Changelog
Version Description
0.71 Introduced.

Advertisement

Leave a Reply