0

以下是带有 Flash 演示的网页链接:

http://services.google.com/analytics/breeze/en/v5/interface_navigation_v15_ad1/

现在我在 wordpress 中创建了一个页面,我想将该视频嵌入到我创建的页面中,这可能吗?感谢您的帮助!

4

1 回答 1

0

只需使用IFRAME.

最好将这种 HTML 作为简码嵌入,例如[embed_html src="http://example.com"]

add_shortcode( 'embed_iframe', 'shortcode_so_14766891' );

/**
 * Example usage
 * [embed_html src="http://site.com" width="400" height="400"]Iframes not enabled[embed_html]
 */
function shortcode_so_14766891( $atts, $content = '' ) 
{
    extract(shortcode_atts(array(
            'url'      => null,
            'width'    => '100%',
            'height'   => '500',
        ), $atts ));

    // URL not provided, bail out
    if( !$url )
        return;

    $html = "<iframe id='myFrame' src='$url' width='$width' height='$height'>$content</iframe>";

    return $html;       
}
于 2013-02-09T23:57:09.040 回答