Custom sidebar for category children?
-
In my category.php, I’ve been using a conditional statement to select specific sidebars for specific categories or groups of categories, like this:
<?php if (is_category( array( 'cheddar', 'swiss'))) { get_sidebar('cheese'); } else if (is_category( array( 'apples', 'cherries', ))) { get_sidebar('fruit'); } else { get_sidebar(); } ?>
Is there a way to call a sidebar to be used with a category and all of that category’s children?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Custom sidebar for category children?’ is closed to new replies.