Filter hook 'media_submitbox_misc_sections'

in WP Core File wp-admin/includes/media.php at line 3434

Description

Filters the audio and video metadata fields to be shown in the publish meta box. The key for each item in the array should correspond to an attachment metadata key, and the value should be the desired label.

Occurrences

Filename Line Number
wp-admin/includes/media.php 3434

Parameters

Type Name Description
array $fields An array of the attachment metadata keys and labels.
WP_Post $post WP_Post object for the current attachment.

PHP Doc

/**
		 * Filters the audio and video metadata fields to be shown in the publish meta box.
		 *
		 * The key for each item in the array should correspond to an attachment
		 * metadata key, and the value should be the desired label.
		 *
		 * @since 3.7.0
		 * @since 4.9.0 Added the `$post` parameter.
		 *
		 * @param array   $fields An array of the attachment metadata keys and labels.
		 * @param WP_Post $post   WP_Post object for the current attachment.
		 */