wp_get_audio_extensions(): string[]

In this article

Returns a filtered list of supported audio formats.

Return

string[] Supported audio formats.

Source

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' ) );
}

Hooks

apply_filters( ‘wp_audio_extensions’, string[] $extensions )

Filters the list of supported audio formats.

Changelog

VersionDescription
3.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.