Guest User

Untitled

a guest
Jan 23rd, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $terms = wp_dropdown_categories(array(
  2. 'taxonomy' => 'news-categories',
  3. 'hierarchical' => 1,
  4. 'show_option_none' => "CATEGORIES",
  5. 'option_none_value' => "",
  6. 'name' => 'news_cat_name',
  7. 'id' => 'cat_search',
  8. 'value_field' => 'slug',
  9. 'selected' => 1,
  10. ));
  11.  
  12. $('#cat_search').change(function () {
  13. var dropdown = $('#cat_search');
  14. if ($(this).val()) {
  15.  
  16. window.location = "<?php echo esc_url(home_url('/')); ?>news-categories/" + $(this).val();
  17. }
  18. });
Add Comment
Please, Sign In to add comment