Uses
| Uses | Description |
|---|---|
| wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
| wp-includes/media.php: wp_video_extensions | Filters the list of supported video formats. |
Returns a filtered list of supported video formats.
(string[]) List of supported video formats.
File: wp-includes/media.php
function wp_get_video_extensions() {
/**
* Filters the list of supported video formats.
*
* @since 3.6.0
*
* @param string[] $extensions An array of supported video formats. Defaults are
* 'mp4', 'm4v', 'webm', 'ogv', 'flv'.
*/
return apply_filters( 'wp_video_extensions', array( 'mp4', 'm4v', 'webm', 'ogv', 'flv' ) );
} | Version | Description |
|---|---|
| 3.6.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_get_video_extensions