I would like to make a mosaic with all the post thumbnails of a category and use it as the heading image on the category page. How do I go about achieving this? Where do I start?
Any suggestion about how to approach the task will be appreciated!
I would like to make a mosaic with all the post thumbnails of a category and use it as the heading image on the category page. How do I go about achieving this? Where do I start?
Any suggestion about how to approach the task will be appreciated!
You must be logged in to post a comment.
Just use
add_image_size()
to set a new size for those cat images:add_image_size( 'mosaic', $your_width, $your_height, true );
. The rest depends on your category image (this isn’t default, but done by some plugin or something else).