ショートコードでGoogleマップを表示させる Ads X Bluesky Misskey はてブ 2012.04.25 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.'&output=embed"></iframe>'; } add_shortcode("googlemap", "fn_googleMaps"); ?> /*[googlemap width="600" height="300" src="GoogleマップのURL"]*/ Screen shot Note Description ショートコードでGoogleマップを表示させる。サイズ指定可能 WordPress Ver. 3.3.1 Via –