wp_get_audio_extensions()WP 3.6.0

Returns a filtered list of WP-supported audio formats.

Hooks from the function

Return

String[]. Supported audio formats.

Usage

wp_get_audio_extensions();

Examples

0

#1 Get all the extensions of supported audio files

$audio_extensions = wp_get_audio_extensions();

/*
$audio_extensions will be equal:

Array
(
	[0] => mp3
	[1] => ogg
	[2] => wma
	[3] => m4a
	[4] => wav
)
*/

Changelog

Since 3.6.0 Introduced.

wp_get_audio_extensions() code WP 6.4.3

function wp_get_audio_extensions() {
	/**
	 * Filters the list of supported audio formats.
	 *
	 * @since 3.6.0
	 *
	 * @param string[] $extensions An array of supported audio formats. Defaults are
	 *                            'mp3', 'ogg', 'flac', 'm4a', 'wav'.
	 */
	return apply_filters( 'wp_audio_extensions', array( 'mp3', 'ogg', 'flac', 'm4a', 'wav' ) );
}