Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I currently have a dropdown box which contains a list of all of the different categories on my website, and I need to add a sub-categories box underneath it. So far, I have this code:

    wp_dropdown_categories('show_option_none='.__('Select one','appthemes').'&class=dropdownlist&orderby=name&order=ASC&hide_empty=0&hierarchical=1&taxonomy=ad_cat&depth=1&name=preselect');

   wp_dropdown_categories('show_option_none='.__('Select one','appthemes').'&class=dropdownlist&orderby=name&order=ASC&hide_empty=0&hierarchical=1&taxonomy=ad_cat&child_of=6');

The 2nd line of code finds all of the sub-categories that belong to the main category with the ID no. 6. How would I automatically change the no.6 when the first drop down box is changed? E.g. if I select ID 7 from the dropdown box, I need the subcategories for ID 7 to show instead of ID 6.

Thanks for any help

Edit: I am trying to run a function after one of the drop down options is chosen, could someone please tell me what I'm doing wrong?

$('#cat').click(function() {

alert("test");

});
share|improve this question

3 Answers

up vote 0 down vote accepted

You can do that with Javascript. Add a onchange attribute to the first dropdown and load the contents of the second dropdown via Ajax.

share|improve this answer
Thanks cweiske, I'll give it a try. I'm not sure how to edit functions like this in wordpress so I'm trying to do it via Jquery, do you know what I'm doing wrong in my edited question? – Daniel H Jul 4 '11 at 14:57
Yes, you did not read my answer: use onchange, not onclick. – cweiske Jul 4 '11 at 15:17
I also tried .change() and that didn't work either – Daniel H Jul 4 '11 at 16:18

If you don't have too many items you may want to filter client side instead of making wordpress run a new query everytime.

You could also trigger the second dropdown by setting the 'id' attribute of the first dropdown's rows to the number you wanted and on click/hover you can filter via the ID.

share|improve this answer

Daniel you could use this tutorial to get you started:

http://www.1stwebdesigner.com/css/implement-ajax-wordpress-themes/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.