diff --git a/wp-includes/class-wp-query.php b/wp-includes/class-wp-query.php index b72c9c35aa..50da8ed7d2 100644 --- a/wp-includes/class-wp-query.php +++ b/wp-includes/class-wp-query.php @@ -811,10 +811,6 @@ class WP_Query { $this->is_single = true; } elseif ( $qv['p'] ) { $this->is_single = true; - } elseif ( ( '' !== $qv['hour'] ) && ( '' !== $qv['minute'] ) && ( '' !== $qv['second'] ) && ( '' != $qv['year'] ) && ( '' != $qv['monthnum'] ) && ( '' != $qv['day'] ) ) { - // If year, month, day, hour, minute, and second are set, - // a single post is being queried. - $this->is_single = true; } elseif ( '' != $qv['pagename'] || ! empty( $qv['page_id'] ) ) { $this->is_page = true; $this->is_single = false; diff --git a/wp-includes/version.php b/wp-includes/version.php index 4da7817f1a..2112d18e66 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-47634'; +$wp_version = '5.5-alpha-47635'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.