WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 211 | global $wp_rewrite; |
| 212 | if ( !$year ) |
| 213 | $year = gmdate('Y', time()+(get_option('gmt_offset') * 3600)); |
| 214 | if ( !$month ) |
| 215 | $month = gmdate('m', time()+(get_option('gmt_offset') * 3600)); |
| 216 | $monthlink = $wp_rewrite->get_month_permastruct(); |
| 217 | if ( !empty($monthlink) ) { |
| 218 | $monthlink = str_replace('%year%', $year, $monthlink); |
| 219 | $monthlink = str_replace('%monthnum%', zeroise(intval($month), 2), $monthlink); |
| 220 | return apply_filters('month_link', get_option('home') . user_trailingslashit($monthlink, 'month'), $year, $month); |
| 221 | } else { |
| 222 | return apply_filters('month_link', get_option('home') . '/?m=' . $year . zeroise($month, 2), $year, $month); |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | function get_day_link($year, $month, $day) { |
| 227 | global $wp_rewrite; |
| 228 | if ( !$year ) |
| 229 | $year = gmdate('Y', time()+(get_option('gmt_offset') * 3600)); |
| 230 | if ( !$month ) |
| 231 | $month = gmdate('m', time()+(get_option('gmt_offset') * 3600)); |