Guest User

Customizer enqueue 2

a guest
Mar 8th, 2016
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. function mytheme_customizer_preview_js() {
  2.    wp_enqueue_script( 'mytheme_customizer_preview', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20160321', true );
  3.    wp_localize_script( 'mytheme_customizer_preview', 'mythemeLocalizer', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), ) );
  4. }
  5. add_action( 'customize_preview_init', 'mytheme_customizer_preview_js' );
Add Comment
Please, Sign In to add comment