Wordpress谷歌地图快捷码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress谷歌地图快捷码相关的知识,希望对你有一定的参考价值。
<!-- Put in functions.php file --> //Google Maps Shortcode function fn_googleMaps($atts, $content = null) { extract(shortcode_atts(array( "width" => '640', "height" => '480', "src" => '' ), $atts)); } add_shortcode("googlemap", "fn_googleMaps"); <!-- Usage inside Post/Page: --> [googlemap width="200" height="200" src="[url]"]
以上是关于Wordpress谷歌地图快捷码的主要内容,如果未能解决你的问题,请参考以下文章