如何在wordpress帖子中调用[here-api]?

时间:2018-08-28 15:03:21

标签: wordpress here-api

我已经在代码片段插件中包含了JavaScript和HTML代码,但是我不知道如何在Wordpress帖子中呈现地图?

这是我要嵌入的源代码:https://developer.here.com/api-explorer/maps-js/v3.0/maps/showing-traffic-information

非常感谢您的提前帮助!

1 个答案:

答案 0 :(得分:0)

检查简码API以获取更多详细信息 https://codex.wordpress.org/Shortcode_API

function api_func( $atts ){
    ob_start(); 
    ?>
         //HTML + jS code here
    <?php
    return ob_get_clean();
}
add_shortcode( 'here-api', 'api_func' );