//新增簡碼

functionBing_add_google_map($atts,$content){

    $GLOBALS['google_map_shortcode']=true;

    return'地圖的程式碼';

}

add_shortcode('google_map','Bing_add_google_map');

//掛載指令碼

functionBing_add_javascript(){

    global$google_map_shortcode;

    if(isset($google_map_shortcode)&&$google_map_shortcode)wp_enqueue_script('map_scripts');

}

add_action('wp_footer','Bing_add_javascript');