wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_get_video_extensions › WordPress Function

Since3.6.0
Deprecatedn/a
wp_get_video_extensions ( No parameters )
Returns:
  • (string[]) List of supported video formats.
Defined at:
Codex:

Returns a filtered list of supported video formats.



Source

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' ) );
}