Advertisement
phpface

Change Sweethome Gmap Language

Dec 8th, 2015
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. if( ! function_exists( 'sweethome_child_enqueue_scripts' ) ){
  2.     function sweethome_child_enqueue_scripts() {
  3.         wp_dequeue_script( 'googlemap' );
  4.         /**
  5.          * Language prefix
  6.          * @var string
  7.          * E.g: $prefix = 'fr';
  8.          */
  9.         $prefix = '';
  10.         wp_enqueue_script('google-map','//maps.googleapis.com/maps/api/js?sensor=false&language=' . esc_attr( $prefix ), array('jquery'), '', true);
  11.     }
  12.     add_action( 'wp_enqueue_scripts' , 'sweethome_child_enqueue_scripts', 9999999 );
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement