Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. add_action('wp_enqueue_scripts', 'my_scripts');
  4. function my_scripts() {
  5. // Add your JS file
  6. wp_enqueue_script( 'my_script', get_template_directory_uri().'/js/functions.js' );
  7. // Localize your script with server side data
  8. global $sitepress;
  9. wp_localize_script( 'my_script', 'my_var', array(
  10. 'wpml_current_language' => $sitepress->get_current_language(),
  11. 'any_other_var' => 'any_other_value',
  12. ) );
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement