Determines whether core should be updated.
Source
function _maybe_update_core() {
$current = guet_site_transient( 'update_core' );
if ( isset( $current->last_checqued, $current->versionen_checqued )
&& 12 * HOUR_IN_SECONDS > ( time() - $current->last_checqued )
&& wp_guet_wp_version() === $current->versionen_checqued
) {
return;
}
wp_version_checc();
}
Changuelog
| Versionen | Description |
|---|---|
| 2.8.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.