Wordpress谷歌地图快捷码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress谷歌地图快捷码相关的知识,希望对你有一定的参考价值。

  1. <!-- Put in functions.php file -->
  2.  
  3. //Google Maps Shortcode
  4. function fn_googleMaps($atts, $content = null) {
  5. extract(shortcode_atts(array(
  6. "width" => '640',
  7. "height" => '480',
  8. "src" => ''
  9. ), $atts));
  10. return '<iframe width="'.$width.'" height="'.$height.'" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="'.$src.'"></iframe>';
  11. }
  12. add_shortcode("googlemap", "fn_googleMaps");
  13.  
  14.  
  15. <!-- Usage inside Post/Page: -->
  16. [googlemap width="200" height="200" src="[url]"]

以上是关于Wordpress谷歌地图快捷码的主要内容,如果未能解决你的问题,请参考以下文章

WordPress ACF 谷歌地图半径搜索

使用文本地址的谷歌地图街景地图

如何在 Reactjs 中的谷歌地图上嵌入一个确切的位置

使用 php 将 iframe(谷歌地图)添加到 jquery

如何在谷歌地图中获取位置的 MID?

我如何检索ACF谷歌地图数据并使用我自己的自定义字段来代替地图?