Created
February 5, 2013 03:39
-
-
Save devinsays/4711970 to your computer and use it in GitHub Desktop.
Translatable Javascript Strings: http://wptheming.com/2013/01/translatable-javascript-strings-in-wordpress/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function prefix_enqueue_custom_script(){ | |
wp_register_script( 'prefix_custom_script', plugin_dir_url( __FILE__ ) .'js/custom-script.js', array( 'jquery' ) ); | |
wp_enqueue_script( 'prefix_custom_script' ); | |
wp_localize_script( 'prefix_custom_script', 'optionsframework', array( | |
'hello' => __( 'Hello', 'textdomain' ), | |
'goodbye' => __( 'Good Bye', 'textdomain' ) | |
) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment