I am using the wp_get_categories in a navigation but there is one theme I want to block, I know I can exclude it by using the ID of it but I don’t want to tell people to edit a file to remove the category from the list.
I found a way to do it but doesn’t work
<?php
$id = get_cat_id('blog');
$q = "cat=" . $id;
?>
and then to display the excluded category
<?php wp_list_categories('orderby=name&title_li=&exclude=<?php echo $q ?>'); ?>
But it shows up as No categories, instead of the list of categories!
Any ideas welcome
Try this:
<?php wp_list_categories('orderby=name&title_li=&exclude='.$id); ?>
Try this:
<?php wp_list_categories('orderby=name&title_li=&exclude='.$id); ?>
It Works
Thanks a lot
- Author had a File in an Envato Bundle
- Author was Featured
- Bought between 50 and 99 items
- Exclusive Author
- Has been a member for 4-5 years
- Item was Featured
- Referred between 500 and 999 users
- Sold between 250 000 and 1 000 000 dollars
Yeah. You can’t have PHP tags within PHP tags.
Yeah. You can’t have PHP tags within PHP tags.
Oops big boo boo, no idea how I missed that lol
