I’ve built an HTML table that is posted on a page in my site, and I’d like to use that same content inside a blog post (something of an...
I tried the example in this link https://codex.wordpress.org/Function_Reference/wp_embed_register_handler but it didn’t work. This is my whole code: add_action('init', function() { wp_embed_register_handler( 'forbes', '#http://(?:www|video)\.forbes\.com/(?:video/embed/embed\.html|embedvideo/)\?show=([\d]+)&format=frame&height=([\d]+)&width=([\d]+)&video=(.+?)($|&)#i', 'wp_embed_handler_forbes' ); }); function wp_embed_handler_forbes( $matches,...