Fred K
Fred K

Reputation: 13910

Wordpress: display categories and taxonomies with custom archive

I'd like to display

and

is it possible?

Upvotes: 0

Views: 136

Answers (1)

Justus Romijn
Justus Romijn

Reputation: 16019

If you look at the template-hierarchy, I'm sure it is possible:

http://codex.wordpress.org/images/1/18/Template_Hierarchy.png

Following the hierarchy convention, it should be:

  • category-x.php -> is automatically used for that category
  • taxonomy-y.php -> is automatilally used for that taxonomy
  • archive.php will be used for News if no more specific template is available.

Upvotes: 1

Related Questions