RWMB_OEmbed_Field::wp_ajax_get_embed PHP Method

wp_ajax_get_embed() public static method

Ajax callback for returning oEmbed HTML
public static wp_ajax_get_embed ( )
    public static function wp_ajax_get_embed()
    {
        $url = (string) filter_input(INPUT_POST, 'url', FILTER_SANITIZE_URL);
        wp_send_json_success(self::get_embed($url));
    }