diff --git a/wp-includes/cron.php b/wp-includes/cron.php index 9f179df510..0c35f6cd0c 100644 --- a/wp-includes/cron.php +++ b/wp-includes/cron.php @@ -825,7 +825,7 @@ function wp_get_schedules() { 'display' => __( 'Once Daily' ), ), 'weekly' => array( - 'interval' => 7 * DAY_IN_SECONDS, + 'interval' => WEEK_IN_SECONDS, 'display' => __( 'Once Weekly' ), ), ); diff --git a/wp-includes/version.php b/wp-includes/version.php index a00cbef0f1..4be0ff40ef 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47067'; +$wp_version = '5.4-alpha-47068'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.