Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/blueversion/wp-content/plugins/ubermenu/pro/ |
Upload File : |
<?php
/*
* Maps
*/
function ubermenu_google_maps( $atts ){
//Enqueue the API
// wp_enqueue_script( 'google-maps' );
ubermenu_enqueue_script( 'google-maps' );
extract(shortcode_atts(array(
'lat' => 0,
'lng' => 0,
'address' => '',
'zoom' => 15,
'title' => '',
'width' => '100%',
'height' => '200px'
), $atts));
$html = '
<div class="ubermenu-map-canvas" data-lat="'.$lat.'" data-lng="'.$lng.'" ';
if( !empty( $address ) ) $html.= 'data-address="'.$address.'" ';
$html.= 'data-zoom="'.$zoom.'" ';
if( !empty( $title ) ) $html.= 'data-maptitle="'.$title.'" ';
$html.= 'style="height:'.$height.'; width:'.$width.'"';
$html.= '></div>';
return $html;
}
add_shortcode( 'ubermenu-map' , 'ubermenu_google_maps' );