wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
_maybe_update_core › WordPress Function
Seit2.8.0
Veraltetn/v
› _maybe_update_core ( Keine Parameter )
Definiert in: |
|
Codex: |
Determines whether core should be updated.
Ähnliche Funktionen: _maybe_update_themes, update_core, wp_update_core, _maybe_update_plugins, wp_maybe_update_user_counts
Quellcode
function _maybe_update_core() { $current = get_site_transient( 'update_core' ); if ( isset( $current->last_checked, $current->version_checked ) && 12 * HOUR_IN_SECONDS > ( time() - $current->last_checked ) && wp_get_wp_version() === $current->version_checked ) { return; } wp_version_check(); }