300, 'height' => 300, 'zoom' => 10, 'latitude' => 23.900642, 'longitude' => 89.130103, 'marker_color' => '1000FF' ); //getting shortcode attr $options = shortcode_atts($options, $atts); //extracting the value $options = extract($options); //generating the image $map_image = " "; //returning the image return $map_image; } add_shortcode ('AS_gmap', 'AS_google_map_image_generator');