Filters the list of supported video formats.
$extensionsstring[]wp-includes/media.php:3590wp_get_video_extensions() * * @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' ) );} /** * Builds the Video shortcode output. * * This implements the functionality of the Video Shortcode for displayingIntroduced in 3.6.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.