From dda65e54238e8ebb7467b7fcf69d4b60d3f06d78 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 13 Oct 2022 17:24:15 +0000 Subject: [PATCH] Docs: Correct parameter name for `deleted_{$meta_type}meta` action. Follow-up to [27698]. Props divyeshgodhani, costdev. Fixes #56806. Built from https://develop.svn.wordpress.org/trunk@54510 git-svn-id: http://core.svn.wordpress.org/trunk@54069 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/meta.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/meta.php b/wp-includes/meta.php index 5a0f9d96c7..73b883d10b 100644 --- a/wp-includes/meta.php +++ b/wp-includes/meta.php @@ -1078,7 +1078,7 @@ function delete_metadata_by_mid( $meta_type, $meta_id ) { * * @since 3.4.0 * - * @param int $meta_ids Deleted metadata entry ID. + * @param int $meta_id Deleted metadata entry ID. */ do_action( "deleted_{$meta_type}meta", $meta_id ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 3b2ba8f30a..fb64471b8d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-RC1-54509'; +$wp_version = '6.1-RC1-54510'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.