フラッシュプレゼンテーションを使用したWebページのリンクは次のとおりです。
http://services.google.com/analytics/breeze/en/v5/interface_navigation_v15_ad1/。
今、私はワードプレスでページを作成しました、そして私は私が作成したページにそのビデオを埋め込みたいです、それは可能ですか?お手伝いありがとう!
フラッシュプレゼンテーションを使用したWebページのリンクは次のとおりです。
http://services.google.com/analytics/breeze/en/v5/interface_navigation_v15_ad1/。
今、私はワードプレスでページを作成しました、そして私は私が作成したページにそのビデオを埋め込みたいです、それは可能ですか?お手伝いありがとう!
を使用するだけ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;
}