Is it possible to exclude a category from an archive droplist?
Is it possible to exclude a category from an archive droplist?
if you category list is being created with wp_list_categories, you can do something like this:
wp_list_categories('orderby=name&show_count=1&exclude=10');
The only part of that line you need to add to your existing code is the
&exclude=10 where 10 stands for the category id you want to exclude. Just add that phrase onto the options that are already in the wp_list_categories line.
Hi...
Doesnt seem to be working. I am using a get_archives though
This is what I have:
<form id="archiveform" action="">
<label>Browse Archives</label>
<select name="archive_chrono" onchange="window.location =
(document.forms.archiveform.archive_chrono[document.forms.archiveform.archive_chrono.selectedIndex].value);">>
<?php wp_get_archives('type=monthly&format=option&show_post_count=1&exclude=5'); ?> </select>
</form>
Any other ideas?
Ive got the same problem but get archives doesnt support a cat exclude function, this is supposed to solve it but i cant get it to work
I got kwebble.com's category plugin to work without issue. Perhaps it is conflicting with one of your other plugins?
This topic has been closed to new replies.