Summery Summery
Clear existing update caches for plugins, themes, and core.
Syntax Syntax
Source Source
File: wp-includes/update.php
*/ function _maybe_update_plugins() { $current = get_site_transient( 'update_plugins' ); if ( isset( $current->last_checked ) && 12 * HOUR_IN_SECONDS > ( time() - $current->last_checked ) ) { return; }
Advertisement
Changelog Changelog
Version | Description |
---|---|
4.1.0 | Introduced. |