wp_schedule_update_checks [ WordPress Function ]
wp_schedule_update_checks ( No parameters )
| Defined at: |
|
Benzer Fonksiyonlar: wp_schedule_update_network_counts, wp_schedule_event, wp_theme_update_rows, wp_scheduled_delete, wp_theme_update_row
Schedule core, theme, and plugin update checks.
Source
<?php
function wp_schedule_update_checks() {
if ( !wp_next_scheduled('wp_version_check') && !defined('WP_INSTALLING') )
wp_schedule_event(time(), 'twicedaily', 'wp_version_check');
if ( !wp_next_scheduled('wp_update_plugins') && !defined('WP_INSTALLING') )
wp_schedule_event(time(), 'twicedaily', 'wp_update_plugins');
if ( !wp_next_scheduled('wp_update_themes') && !defined('WP_INSTALLING') )
wp_schedule_event(time(), 'twicedaily', 'wp_update_themes');
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- wp_get_schedules not returning an array of schedules - WordPress
May 15, 2012 ... I also discover in my debug that the function wp_schedule_update_checks() in update.php was being repeatedly called and each of the calls to ...
wordpress.org - WordPress › Support » Can't reach site since update to 3.1
... ( 'admin_init', '_maybe_update_themes' ); //add_action( 'wp_update_themes', ' wp_update_themes' ); //add_action('init', 'wp_schedule_update_checks'); ...
wordpress.org - PHPXRef 0.7 : WordPress (latest release) : Detail view of update.php
wp_update_themes() wp_get_update_data() _maybe_update_core() _maybe_update_plugins() _maybe_update_themes() wp_schedule_update_checks() ...
lab.yukei.net - PHPXRef 0.7 : WordPress : /wp-includes/update.php source
418 * 419 * @since 3.1.0 420 */ 421 function wp_schedule_update_checks() { 422 if ... 449 450 add_action('init', 'wp_schedule_update_checks');. title ...
phpxref.ftwr.co.uk