0

フラッシュプレゼンテーションを使用したWebページのリンクは次のとおりです。

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

今、私はワードプレスでページを作成しました、そして私は私が作成したページにそのビデオを埋め込みたいです、それは可能ですか?お手伝いありがとう!

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 に答える