WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about wp_read_audio_metadata

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-admin/includes/media.php apply_filters 3719 /**
* Filters the array of metadata retrieved from an audio file.
*
* In core, usually this selection is what is stored.
* More complete data can be parsed from the `$data` parameter.
*
* @since 6.1.0
*
* @param array $metadata Filtered audio metadata.
* @param string $file Path to audio file.
* @param string|null $file_format File format of audio, as analyzed by getID3.
* Null if unknown.
* @param array $data Raw metadata from getID3.
*/

Hook Parameters

Parameter Type Name Description
array $metadata Filtered audio metadata.
string $file Path to audio file.
string|null $file_format File format of audio, as analyzed by getID3.
array $data Raw metadata from getID3.