diff -r be944660c56a -r 3d72ae0968f4 wp/wp-includes/category-template.php --- a/wp/wp-includes/category-template.php Wed Sep 21 18:19:35 2022 +0200 +++ b/wp/wp-includes/category-template.php Tue Sep 27 16:37:53 2022 +0200 @@ -103,12 +103,12 @@ * * @since 0.71 * - * @param int $cat_ID Category ID. + * @param int $cat_id Category ID. * @return string|WP_Error Category name on success, WP_Error on failure. */ -function get_the_category_by_ID( $cat_ID ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid - $cat_ID = (int) $cat_ID; - $category = get_term( $cat_ID ); +function get_the_category_by_ID( $cat_id ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid + $cat_id = (int) $cat_id; + $category = get_term( $cat_id ); if ( is_wp_error( $category ) ) { return $category; @@ -331,6 +331,8 @@ * Default false (create select element even if no categories are found). * @type bool $required Whether the `