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

Top ↑

See also


Top ↑

Source

File: wp-includes/general-template.php

function delete_get_calendar_cache() {
	wp_cache_delete( 'get_calendar', 'calendar' );
}


Top ↑

Changelog

Changelog
VersionDescription
2.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More