Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function ajax_filter_posts_scripts() {
  2. wp_register_script('afp_script', get_template_directory_uri() . '/js/ajax-filter-posts.js', false, null, false);
  3. wp_enqueue_script('afp_script');
  4.  
  5. wp_localize_script( 'afp_script', 'afp_vars', array(
  6. 'afp_nonce' => wp_create_nonce( 'afp_nonce' ),
  7. 'afp_ajax_url' => admin_url( 'admin-ajax.php' ),
  8. )
  9. );
  10. }
  11. add_action('wp_enqueue_scripts', 'ajax_filter_posts_scripts', 100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement