Skip to content

Instantly share code, notes, and snippets.

@salehahmadbabu
Created May 27, 2020 15:36
Show Gist options
  • Save salehahmadbabu/694fd1366f7b8fa96de3294f9a85d007 to your computer and use it in GitHub Desktop.
Save salehahmadbabu/694fd1366f7b8fa96de3294f9a85d007 to your computer and use it in GitHub Desktop.
function philosophy_google_map($atts) {
$default = array(
'place' => __( 'Dhaka', 'philosophy' ),
'width' => '800',
'height' => '500',
'zoom' => '12',
);
$params = shortcode_atts( $default, $atts );
$map = <<<EOD
<div>
<div>
<iframe width="{$params['width']}" height="{$params['height']}"
src="https://maps.google.com/maps?q={$params['place']}&t=&z={$params['zoom']}&ie=UTF8&iwloc=&output=embed"
frameborder="0" scrolling="no" marginheight="0" marginwidth="0">
</iframe>
</div>
</div>
EOD;
return $map;
}
add_shortcode( 'googlemap', 'philosophy_google_map' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment