Skip to content

Instantly share code, notes, and snippets.

@devinsays
Created February 5, 2013 03:39
Show Gist options
  • Save devinsays/4711970 to your computer and use it in GitHub Desktop.
Save devinsays/4711970 to your computer and use it in GitHub Desktop.
<?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