diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index c4a0ead64c..687ac3bb8c 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -390,7 +390,8 @@ function is_taxonomy_hierarchical( $taxonomy ) { * * @global WP_Taxonomy[] $wp_taxonomies Registered taxonomies. * - * @param string $taxonomy Taxonomy key, must not exceed 32 characters. + * @param string $taxonomy Taxonomy key, must not exceed 32 characters and may only contain lowercase alphanumeric + * characters, dashes, and underscores. See sanitize_key(). * @param array|string $object_type Object type or array of object types with which the taxonomy should be associated. * @param array|string $args { * Optional. Array or query string of arguments for registering a taxonomy. diff --git a/wp-includes/version.php b/wp-includes/version.php index 88f95015b8..d5c5c1e27a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53872'; +$wp_version = '6.1-alpha-53873'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.