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 3 times in this file.
Line | Code |
---|---|
2225 | */ |
2226 | function get_calendar( $initial = true, $echo = true ) { |
2227 | global $wpdb, $m, $monthnum, $year, $wp_locale, $posts; |
2228 |
|
2229 | $key = md5( $m . $monthnum . $year ); |
2230 | $cache = wp_cache_get( 'get_calendar', 'calendar' ); |
2231 |
|
2232 | if ( $cache && is_array( $cache ) && isset( $cache[ $key ] ) ) { |
2233 | /** This filter is documented in wp-includes/general-template.php */ |
2234 | $output = apply_filters( 'get_calendar', $cache[ $key ] ); |
2235 |
|
2236 | if ( $echo ) { |
2237 | echo $output; |
2238 | return; |
2239 | } |
2240 |
|
2241 | return $output; |
2242 | } |
2243 |
|
Line | Code |
2432 |
|
2433 | if ( $echo ) { |
2434 | /** |
2435 | * Filters the HTML calendar output. |
2436 | * |
2437 | * @since 3.0.0 |
2438 | * |
2439 | * @param string $calendar_output HTML output of the calendar. |
2440 | */ |
2441 | echo apply_filters( 'get_calendar', $calendar_output ); |
2442 | return; |
2443 | } |
2444 | /** This filter is documented in wp-includes/general-template.php */ |
2445 | return apply_filters( 'get_calendar', $calendar_output ); |
2446 | } |
2447 |
|
2448 | /** |
2449 | * Purges the cached results of get_calendar. |
2450 | * |
2451 | * @see get_calendar() |
2452 | * @since 2.1.0 |
2453 | */ |
2454 | function delete_get_calendar_cache() { |