Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: day_link

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

This hook occurs 2 times in this file.

Line Code
390           $month = gmdate('m', current_time('timestamp'));
391      if ( !$day )
392           $day = gmdate('j', current_time('timestamp'));
393
394      $daylink = $wp_rewrite->get_day_permastruct();
395      if ( !empty($daylink) ) {
396           $daylink = str_replace('%year%', $year, $daylink);
397           $daylink = str_replace('%monthnum%', zeroise(intval($month), 2), $daylink);
398           $daylink = str_replace('%day%', zeroise(intval($day), 2), $daylink);
399           return apply_filters('day_link', home_url( user_trailingslashit($daylink, 'day') ), $year, $month, $day);
400      } else {
401           return apply_filters('day_link', home_url( '?m=' . $year . zeroise($month, 2) . zeroise($day, 2) ), $year, $month, $day);
402      }
403 }
404
405 /**
406  * Display the permalink for the feed type.
407  *
408  * @since 3.0.0
409  *
410  * @param string $anchor The link's anchor text.