delete_get_calendar_cache() WordPress Function
The delete_get_calendar_cache() function is used to delete the cached results of the get_calendar() function. This function is useful for clearing the cache when the calendar data needs to be updated.
delete_get_calendar_cache() #
Purge the cached results of get_calendar.
Description
See also
Source
File: wp-includes/general-template.php
function delete_get_calendar_cache() {
wp_cache_delete( 'get_calendar', 'calendar' );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 2.1.0 | Introduced. |