ショートコードでGoogleマップを表示させる

Ads

Code

<?php
function fn_googleMaps($atts, $content = null) {
extract(shortcode_atts(array(
"width" => '640',
"height" => '480',
"src" => ''
), $atts));
return '<iframe width="'.$width.'" height="'.$height.'" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="'.$src.'&amp;output=embed"></iframe>';
}
add_shortcode("googlemap", "fn_googleMaps");
?>
/*[googlemap width="600" height="300" src="GoogleマップのURL"]*/
view raw gistfile1.aw hosted with ❤ by GitHub

Screen shot

Note

Description ショートコードでGoogleマップを表示させる。サイズ指定可能
WordPress Ver. 3.3.1
Via