Media: Add aac to the list of allowed file types.

Props desrosj.
Fixes #42919.
Built from https://develop.svn.wordpress.org/trunk@42697


git-svn-id: http://core.svn.wordpress.org/trunk@42525 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov
2018-02-11 16:40:31 +00:00
parent 3de0634199
commit f88dddcab5
3 changed files with 4 additions and 3 deletions

View File

@@ -2243,9 +2243,9 @@ function wp_get_audio_extensions() {
* @since 3.6.0
*
* @param array $extensions An array of supported audio formats. Defaults are
* 'mp3', 'ogg', 'flac', 'm4a', 'wav'.
* 'mp3', 'aac', 'ogg', 'flac', 'm4a', 'wav'.
*/
return apply_filters( 'wp_audio_extensions', array( 'mp3', 'ogg', 'flac', 'm4a', 'wav' ) );
return apply_filters( 'wp_audio_extensions', array( 'mp3', 'aac', 'ogg', 'flac', 'm4a', 'wav' ) );
}
/**