wp_schedule_update_checks

函数
wp_schedule_update_checks ( No parameters )

wp_schedule_update_checks: 这是一个WordPress函数,用于安排WordPress核心、主题和插件的更新。它允许你指定一个时间间隔和一个回调函数,这个回调函数将在这个时间间隔执行,以检查更新。例如,你可以用这个函数来安排更新,每天运行一次。

定时核心、主题和插件的更新检查。

function wp_schedule_update_checks() {
	if ( ! wp_next_scheduled( 'wp_version_check' ) && ! wp_installing() ) {
		wp_schedule_event( time(), 'twicedaily', 'wp_version_check' );
	}

	if ( ! wp_next_scheduled( 'wp_update_plugins' ) && ! wp_installing() ) {
		wp_schedule_event( time(), 'twicedaily', 'wp_update_plugins' );
	}

	if ( ! wp_next_scheduled( 'wp_update_themes' ) && ! wp_installing() ) {
		wp_schedule_event( time(), 'twicedaily', 'wp_update_themes' );
	}
}

常见问题

FAQs
查看更多 >