Definition:
function wp_maybe_load_embeds() {}
Determines if default embed handlers should be loaded.
Checks to make sure that the embeds library hasn’t already been loaded. If it hasn’t, then it will load the embeds library.
Defined filters
- load_default_embeds
apply_filters( 'load_default_embeds', true )
Source code
function wp_maybe_load_embeds() { if ( ! apply_filters( 'load_default_embeds', true ) ) return; wp_embed_register_handler( 'googlevideo', '#http://video\.google\.([A-Za-z.]{2,5})/videoplay\?docid=([\d-]+)(.*?)#i', 'wp_embed_handler_googlevideo' ); }
15209
No comments yet... Be the first to leave a reply!