Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_video_extensions

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3140 function wp_get_video_extensions() {
3141      /**
3142       * Filters the list of supported video formats.
3143       *
3144       * @since 3.6.0
3145       *
3146       * @param string[] $extensions An array of supported video formats. Defaults are
3147       *                             'mp4', 'm4v', 'webm', 'ogv', 'flv'.
3148       */
3149      return apply_filters( 'wp_video_extensions', array( 'mp4', 'm4v', 'webm', 'ogv', 'flv' ) );
3150 }
3151
3152 /**
3153  * Builds the Video shortcode output.
3154  *
3155  * This implements the functionality of the Video Shortcode for displaying
3156  * WordPress mp4s in a post.
3157  *
3158  * @since 3.6.0