Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Created March 17, 2015 13:43
Show Gist options
  • Save igmoweb/1fe7c35f035faec199c0 to your computer and use it in GitHub Desktop.
Save igmoweb/1fe7c35f035faec199c0 to your computer and use it in GitHub Desktop.
conti
<?php
function media_files_tools_load_js(){
wp_enqueue_media();
wp_enqueue_script('media_files_tools_load_js' , "/" . PLUGINDIR . '/media-files-tools/js/uploader.js' , array('jquery'),'2.0');
$object = array(
'conti' => __( 'John Conti', 'conti' ),
'my_string' => __( 'My String', 'conti' )
);
wp_localize_script( 'media_files_tools_load_js', 'media_files_i18n', $object );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment