Archived topic
Archive/Category Displays
3 replies · Started by Josep on August 5, 2016
Alright - this may not be the location for this discussion and if it's not - no problem. I'm trying to figure out a way for my category pages to display JUST the featured images of posts.
What I would like it to look like: http://www.artofboardgaming.com/insta/
I do that page manually. I'd like my category pages to look like that and look like that automatically.
Example category page: http://www.artofboardgaming.com/category/reviews/
I'll keep looking for plugins for now.
You could use my Show Posts plugin: https://wordpress.org/plugins/wp-show-posts/
However, that won't convert your category pages, it will just allow you to create new pages that update with the category posts automatically.
Otherwise you'll need to find another plugin, or mess around with some CSS:
.category .post .inside-article > *:not(.post-image) {
display: none;
}
@media (min-width: 769px) {
.category .type-post {
width: 33%;
float: left;
}
.category .paging-navigation {
clear: both;
}
}
Hope this helps :)
That plug-in is.... a-maze-ing.
Tom for the win (again) and topic is resolved.
Awesome :) Glad you like it!