Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 | – |