Advertisement
Guest User

enqueue and localizing the Javascript.

a guest
Dec 21st, 2016
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. //enqueue and localizing the Javascript.
  2.  
  3. function assets() {
  4. wp_enqueue_script('ajax_filter_post_mdu', get_template_directory_uri() . '/js/ajax-filter-posts.js', ['jquery'], null, true);
  5. wp_localize_script( 'ajax_filter_post_mdu', 'bobz', array(
  6. 'nonce' => wp_create_nonce( 'bobz' ),
  7. 'ajax_url' => admin_url( 'admin-ajax.php' )
  8. ));
  9. }
  10. add_action('wp_enqueue_scripts', 'assets', 100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement