Deprecate update_category_cache(). Fixes #15446
git-svn-id: https://develop.svn.wordpress.org/trunk@16412 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
3b115a7ec5
commit
26f88f4b0f
@ -67,8 +67,6 @@ auth_redirect();
|
||||
|
||||
nocache_headers();
|
||||
|
||||
update_category_cache();
|
||||
|
||||
// Schedule trash collection
|
||||
if ( !wp_next_scheduled('wp_scheduled_delete') && !defined('WP_INSTALLING') )
|
||||
wp_schedule_event(time(), 'daily', 'wp_scheduled_delete');
|
||||
|
@ -305,22 +305,6 @@ function &get_tag( $tag, $output = OBJECT, $filter = 'raw' ) {
|
||||
/* Cache */
|
||||
|
||||
|
||||
/**
|
||||
* Update the categories cache.
|
||||
*
|
||||
* This function does not appear to be used anymore or does not appear to be
|
||||
* needed. It might be a legacy function left over from when there was a need
|
||||
* for updating the category cache.
|
||||
*
|
||||
* @since 1.5.0
|
||||
*
|
||||
* @return bool Always return True
|
||||
*/
|
||||
function update_category_cache() {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Remove the category cache data based on ID.
|
||||
*
|
||||
|
@ -2556,3 +2556,22 @@ function is_plugin_page() {
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the categories cache.
|
||||
*
|
||||
* This function does not appear to be used anymore or does not appear to be
|
||||
* needed. It might be a legacy function left over from when there was a need
|
||||
* for updating the category cache.
|
||||
*
|
||||
* @since 1.5.0
|
||||
* @deprecated 3.1
|
||||
*
|
||||
* @return bool Always return True
|
||||
*/
|
||||
function update_category_cache() {
|
||||
_deprecated_function( __FUNCTION__, '3.1' );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user