Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_modified_time

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1482
1483 /**
1484  * Display the time at which the post was last modified.
1485  *
1486  * @since 2.0.0
1487  *
1488  * @param string $d Optional Either 'G', 'U', or php date format defaults to the value specified in the time_format option.
1489  */
1490 function the_modified_time($d = '') {
1491      echo apply_filters('the_modified_time', get_the_modified_time($d), $d);
1492 }
1493
1494 /**
1495  * Retrieve the time at which the post was last modified.
1496  *
1497  * @since 2.0.0
1498  *
1499  * @param string $d Optional Either 'G', 'U', or php date format defaults to the value specified in the time_format option.
1500  * @return string