Habe mittels des Plugin Snippets folgendes hinzugefügt
function googlemapshortcode($atts, $content = null) {
extract(shortcode_atts(array(
"width" => '940',
"height" => '300',
"src" => ''
), $atts));
return '<div><iframe src="'.$src.'&output=embed" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="'.$width.'" height="'.$height.'"></iframe>
</div> ';
}
add_shortcode("googlemap", "googlemapshortcode");
Danach habe ich das Snippet aktiviert, Option [COLOR=#444444][FONT=-apple-system]Snippet überall ausführen ist an[/FONT][/COLOR]
Auf meiner Seite habe ich folgenden Shortcode eingefügt
[COLOR=#333333][FONT=Georgia][googlemap width="300" hight="300" src="https://www.google.de/maps/place/S%C…838%214d7.56971"]
[/FONT][/COLOR]Es ändert sich auch die Größe der Seite, ABER ich bekomme keine Google Karte angezeigt, siehe http://shinjeonhapkido.eu/?page_id=137
Jemand einen Tipp??