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
This commit is contained in:
Sergey Biryukov 2022-10-13 17:24:15 +00:00
parent 6797903bed
commit dda65e5423
2 changed files with 2 additions and 2 deletions

View File

@ -1078,7 +1078,7 @@ function delete_metadata_by_mid( $meta_type, $meta_id ) {
* *
* @since 3.4.0 * @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 ); do_action( "deleted_{$meta_type}meta", $meta_id );
} }

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.