I've got a Wordpress structure like this.

HOME
HOME > BLOGS
HOME > BLOGS > BLOGNAME1 > SINGLE PAGES
HOME > BLOGS > BLOGNAME2 > SINGLE PAGES
HOME > BLOGS > BLOGNAME3 > SINGLE PAGES

I'd like the BLOGNAME1, BLOGNAME2, BLOGNAME3 category pages to use the same template.

From what I can tell, I'm after something to put in functions.php that says if category is a descendant of the BLOGS category, its category page should use a particular template.

There are some similar discussions here but they'd all force these subcategories to inherit the BLOGS template, which isn't what I'm after.

Any ideas?

link|improve this question
feedback

2 Answers

The first that came to mind is to use the following fork inside archive.php (or index.php if you don't have archive.php)

<?php if(is_category(array('BLOGNAME1', 'BLOGNAME2', 'BLOGNAME3'))) : ?>

 the custom template HTML goes here

<?php else : ?>

 normall flow

<?php endif; ?>

You can use category ID, slug or/and name as array values. You can even mix them. Read more here: http://codex.wordpress.org/Function_Reference/is_category

link|improve this answer
feedback

Use the Category Template Hierarchy Plugin I built. Then just create your template and name it according to the plugin's naming convention. In your case...

child-of-category-blogs.php

..that is, if your slug for that category is blogs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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