Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Google maps Shortcode

// Add Shortcode
function sqr_gmap_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'address' => 'Bulevardul Magheru Bucuresti',
			'width' => '400',
			'height' => '300',
		),
		$atts
	);

	return '<iframe src="https://www.google.com/maps/embed?pb='.$address.' width="'.$width.'" height="'.$heigh.'" frameborder="0" style="border:0"></iframe>';

}
add_shortcode( 'sqr_gmap', 'sqr_gmap_shortcode' );