01: function googlemap_output_func( $atts, $content = null ) { 02: extract( shortcode_atts( array( 03: 'mapid' => 'map', 04: 'zoom' => '3', 05: ), $atts )); 06: $lng = implode("",get_post_custom_values("lng")); 07: $lat = implode("",get_post_custom_values("lat")); 08: $data = "\n"; 16: return $data; 17: } 18: 19: add_shortcode( 'googlemap', 'googlemap_output_func' );