video_embed_html, $html

video_embed_html, $html

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('video_embed_html, $html') is found 2 times:

  • /modules/shortcodes/vimeo.php line 256
    	 * @since 1.2.3
    	 *
    	 * @param string $html Embedded Vimeo player HTML.
    	 */
    	$html = apply_filters( 'video_embed_html', $html );
    
    	return $html;
    }
    add_shortcode( 'vimeo', 'vimeo_shortcode' );
    
    /**
    
  • /modules/shortcodes/youtube.php line 414
    	 * @since 1.2.3
    	 *
    	 * @param string $html YouTube video HTML output.
    	 */
    	$html = apply_filters( 'video_embed_html', $html );
    
    	return $html;
    }
    
    /**
     * Gets the args present in the YouTube shortcode URL.