I’m want to set a featured image for the archive templates of my theme. To my knowledge, there is not a way to do so in the WordPress Admin (like Pages and Posts).
I was thinking about writing a function that filters through the currently uploaded featured images and matches the template to the file name. Might be a bit complex.
I also know there are theme options. But this seems like a lot to manage.
How would you recommend doing this that facilitates Featured Image administration (Theme -> Header) and ease of maintenance…
There are lots of archives in WordPress. Tag archives, date archives, category archives, term archives, author archives. Which archive do you mean?
You could start by trying the Taxonomy Images plugin
http://wordpress.org/extend/plugins/taxonomy-images/
This is old, but it’s the first search that comes up on Google under this topic.
The way I found round this was to create a new page. Don’t give it the same name as your archive page (WordPress doesn’t like pages with the same name as your archive page it causes problems), you can call it anything else. Set the featured image and then call it on your archive template using this code:
To break it down:
is the id number of your new page.
finds the featured image attached to this page
echos out the featured image from your new page.
you could do this via css by defining an header image region in your archive.php and setting a background image in your style.css
or you could use the plugin dynamic headers
http://wordpress.org/extend/plugins/dynamic-headers/
(works great even though it hasn’t been updated since 2010)
Coming in quite late on this, but I believe this plugin addresses the original question:
http://wordpress.org/plugins/categories-images/
It allows an admin to select a ‘featured image’ for a particular category / tag / taxonomy on the taxonomy edit panel. Then it can be used in a theme’s archive.php (for example) by echoing
z_taxonomy_image_url();
.If you’d rather roll your own, maybe check out the code in that plugin for a starting point.
I think you should go with Manual method, something like this:
now, you can use that image anywhere, in
head
or in page…YOAST! Premium does this out-of-the-box.
However, I use ACF, where I can create an options page, where I added a repeater field where I can set a featured image for each post type.
Then, with the function below added to my functions.php, I call the necessary meta tags on the post type archives for which I defined a featured image.