Skip to content

Instantly share code, notes, and snippets.

@tobedoit
Created November 26, 2012 06:39
Show Gist options
  • Save tobedoit/4146876 to your computer and use it in GitHub Desktop.
Save tobedoit/4146876 to your computer and use it in GitHub Desktop.
Wordpress: google map shortcode
/* ********************************************************************************************************
** Google Maps Shortcode ******************************************************************************* */
/* !구글맵 shortcode ************************************************************************************ */
function fn_googleMaps($atts, $content = null) {
extract(shortcode_atts(array(
"width" => '598',
"height" => '420',
"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");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment