Media: Remove media player support for `.aac` files due to only partial support in Firefox.
This still allows `.aac` files to be uploaded, but does not explicitly declare support for use in the editor and within embeds to prevent bad UX. Props desrosj. See #42919. git-svn-id: https://develop.svn.wordpress.org/trunk@43135 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
31efcda314
commit
09faa13278
|
@ -2248,9 +2248,9 @@ function wp_get_audio_extensions() {
|
|||
* @since 3.6.0
|
||||
*
|
||||
* @param array $extensions An array of supported audio formats. Defaults are
|
||||
* 'mp3', 'aac', 'ogg', 'flac', 'm4a', 'wav'.
|
||||
* 'mp3', 'ogg', 'flac', 'm4a', 'wav'.
|
||||
*/
|
||||
return apply_filters( 'wp_audio_extensions', array( 'mp3', 'aac', 'ogg', 'flac', 'm4a', 'wav' ) );
|
||||
return apply_filters( 'wp_audio_extensions', array( 'mp3', 'ogg', 'flac', 'm4a', 'wav' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue