apply_filters( ‘wp_video_embed_handler’, callable $handler )

In this article

Filters the video embed handler callback.

Parameters

$handlercallable
Video embed handler callback function.

Source

wp_embed_register_handler( 'video', '#^https?://.+?\.(' . implode( '|', wp_get_video_extensions() ) . ')$#i', apply_filters( 'wp_video_embed_handler', 'wp_embed_handler_video' ), 9999 );

Changelog

VersionDescription
3.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.