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 4 times in this file.
| Line | Code |
|---|---|
| 1405 | */ |
| 1406 | function get_calendar($initial = true, $echo = true) { |
| 1407 | global $wpdb, $m, $monthnum, $year, $wp_locale, $posts; |
| 1408 | |
| 1409 | $key = md5( $m . $monthnum . $year ); |
| 1410 | if ( $cache = wp_cache_get( 'get_calendar', 'calendar' ) ) { |
| 1411 | if ( is_array($cache) && isset( $cache[ $key ] ) ) { |
| 1412 | if ( $echo ) { |
| 1413 | /** This filter is documented in wp-includes/general-template.php */ |
| 1414 | echo apply_filters( 'get_calendar', $cache[$key] ); |
| 1415 | return; |
| 1416 | } else { |
| 1417 | /** This filter is documented in wp-includes/general-template.php */ |
| 1418 | return apply_filters( 'get_calendar', $cache[$key] ); |
| 1419 | } |
| 1420 | } |
| 1421 | } |
| 1422 | |
| 1423 | if ( !is_array($cache) ) |
| 1424 | $cache = array(); |
| 1425 | |
| 1426 | // Quick check. If we have no posts at all, abort! |
| 1427 | if ( !$posts ) { |
| Line | Code |
| 1600 | |
| 1601 | if ( $echo ) { |
| 1602 | /** |
| 1603 | * Filter the HTML calendar output. |
| 1604 | * |
| 1605 | * @since 3.0.0 |
| 1606 | * |
| 1607 | * @param string $calendar_output HTML output of the calendar. |
| 1608 | */ |
| 1609 | echo apply_filters( 'get_calendar', $calendar_output ); |
| 1610 | } else { |
| 1611 | /** This filter is documented in wp-includes/general-template.php */ |
| 1612 | return apply_filters( 'get_calendar', $calendar_output ); |
| 1613 | } |
| 1614 | |
| 1615 | } |
| 1616 | |
| 1617 | /** |
| 1618 | * Purge the cached results of get_calendar. |
| 1619 | * |
| 1620 | * @see get_calendar |
| 1621 | * @since 2.1.0 |