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
1656 function wp_get_video_extensions() {
1657      /**
1658       * Filter the list of supported video formats.
1659       *
1660       * @since 3.6.0
1661       *
1662       * @param array $extensions An array of support video formats. Defaults are
1663       *                          'mp4', 'm4v', 'webm', 'ogv', 'wmv', 'flv'.
1664       */
1665      return apply_filters( 'wp_video_extensions', array( 'mp4', 'm4v', 'webm', 'ogv', 'wmv', 'flv' ) );
1666 }
1667
1668 /**
1669  * The Video shortcode.
1670  *
1671  * This implements the functionality of the Video Shortcode for displaying
1672  * WordPress mp4s in a post.
1673  *
1674  * @since 3.6.0