@@ -6653,8 +6653,6 @@ public function delete($file, $recursive = \false, $type = \false)
66536653 * Checks if a file or directory exists.
66546654 *
66556655 * @since 2.5.0
6656- * @since 6.1.0 Uses WP_Filesystem_FTPext::is_dir() to check for directory existence
6657- * and ftp_rawlist() to check for file existence.
66586656 *
66596657 * @param string $path Path to file or directory.
66606658 * @return bool Whether $path exists or not.
@@ -7037,8 +7035,6 @@ public function delete($file, $recursive = \false, $type = \false)
70377035 * Checks if a file or directory exists.
70387036 *
70397037 * @since 2.5.0
7040- * @since 6.1.0 Uses WP_Filesystem_ftpsockets::is_dir() to check for directory existence
7041- * and file size to check for file existence.
70427038 *
70437039 * @param string $path Path to file or directory.
70447040 * @return bool Whether $path exists or not.
@@ -50945,11 +50941,16 @@ class WP_Theme_JSON
5094550941 /**
5094650942 * Defines which pseudo selectors are enabled for which elements.
5094750943 *
50944+ * The order of the selectors should be: visited, hover, focus, active.
50945+ * This is to ensure that 'visited' has the lowest specificity
50946+ * and the other selectors can always overwrite it.
50947+ *
50948+ * See https://core.trac.wordpress.org/ticket/56928.
5094850949 * Note: this will affect both top-level and block-level elements.
5094950950 *
5095050951 * @since 6.1.0
5095150952 */
50952- const VALID_ELEMENT_PSEUDO_SELECTORS = array('link' => array(':hover ', ':focus ', ':active ', ':visited '), 'button' => array(':hover ', ':focus ', ':active ', ':visited '));
50953+ const VALID_ELEMENT_PSEUDO_SELECTORS = array('link' => array(':visited ', ':hover ', ':focus ', ':active '), 'button' => array(':visited ', ':hover ', ':focus ', ':active '));
5095350954 /**
5095450955 * The valid elements that can be found under styles.
5095550956 *
@@ -82649,6 +82650,7 @@ function get_theme_update_available($theme)
8264982650 * and 'Full Site Editing' features.
8265082651 * @since 5.5.0 Added 'Wide Blocks' layout option.
8265182652 * @since 5.8.1 Added 'Template Editing' feature.
82653+ * @since 6.1.1 Replaced 'Full Site Editing' feature name with 'Site Editor'.
8265282654 *
8265382655 * @param bool $api Optional. Whether try to fetch tags from the WordPress.org API. Defaults to true.
8265482656 * @return array Array of features keyed by category with translations keyed by slug.
@@ -83026,9 +83028,11 @@ function _upgrade_440_force_deactivate_incompatible_plugins()
8302683028 /**
8302783029 * @access private
8302883030 * @ignore
83029- * @since 5.9.0
83031+ * @since 5.8.0
83032+ * @since 5.9.0 The minimum compatible version of Gutenberg is 11.9.
83033+ * @since 6.1.1 The minimum compatible version of Gutenberg is 14.1.
8303083034 */
83031- function _upgrade_590_force_deactivate_incompatible_plugins ()
83035+ function _upgrade_core_deactivate_incompatible_plugins ()
8303283036 {
8303383037 }
8303483038 /**
@@ -86113,6 +86117,7 @@ function wp_get_computed_fluid_typography_value($args = array())
8611386117 * formula depending on available, valid values.
8611486118 *
8611586119 * @since 6.1.0
86120+ * @since 6.1.1 Adjusted rules for min and max font sizes.
8611686121 *
8611786122 * @param array $preset {
8611886123 * Required. fontSizes preset value as seen in theme.json.
@@ -86518,7 +86523,7 @@ function _add_template_loader_filters()
8651886523 * @param string $template Path to the template. See locate_template().
8651986524 * @param string $type Sanitized filename without extension.
8652086525 * @param string[] $templates A list of template candidates, in descending order of priority.
86521- * @return string The path to the Full Site Editing template canvas file, or the fallback PHP template.
86526+ * @return string The path to the Site Editor template canvas file, or the fallback PHP template.
8652286527 */
8652386528 function locate_block_template($template, $type, array $templates)
8652486529 {
@@ -110152,6 +110157,7 @@ function get_current_network_id()
110152110157 * @since 3.4.0
110153110158 * @access private
110154110159 *
110160+ * @global WP_Textdomain_Registry $wp_textdomain_registry WordPress Textdomain Registry.
110155110161 * @global WP_Locale $wp_locale WordPress date and time locale object.
110156110162 */
110157110163 function wp_load_translations_early()
@@ -120838,6 +120844,8 @@ function get_page_by_path($page_path, $output = \OBJECT, $post_type = 'page')
120838120844 * @since 2.1.0
120839120845 * @since 3.0.0 The `$post_type` parameter was added.
120840120846 *
120847+ * @global wpdb $wpdb WordPress database abstraction object.
120848+ *
120841120849 * @param string $page_title Page title.
120842120850 * @param string $output Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which
120843120851 * correspond to a WP_Post object, an associative array, or a numeric array,
0 commit comments