需要帮忙。我想在wordpress页面中嵌入带有flash演示文稿的网页

时间:2013-02-08 06:24:18

标签: wordpress flash embed

以下是网页与Flash演示文稿的链接:

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

现在我在wordpress中创建了一个页面,我想在我创建的页面中嵌入该视频,是否可能?谢谢你的帮助!

1 个答案:

答案 0 :(得分: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;       
}