Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // Register the script
  2. wp_register_script( 'some_handle', 'path/to/myscript.js' );
  3.  
  4. // Localize the script with new data
  5. $translation_array = array(
  6. 'some_string' => __( 'Some string to translate', 'plugin-domain' ),
  7. 'a_value' => '10'
  8. );
  9. wp_localize_script( 'some_handle', 'object_name', $translation_array );
  10.  
  11. // Enqueued script with localized data.
  12. wp_enqueue_script( 'some_handle' );
  13.  
  14. <script>
  15. // alerts 'Some string to translate'
  16. alert( object_name.some_string);
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement