How to make a Thumbnails Mosaic

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!

Related posts

Leave a Reply

1 comment

  1. 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).