How to get all featured image sizes and their URLs?

I don’t remember a function that will do precisely that, but it is easily achieved with API overall:

  1. Retrieve attachment ID with get_post_thumbnail_id()
  2. Retrieve available sizes with get_intermediate_image_sizes()
  3. For each size use wp_get_attachment_image_src(), which gives precisely data you need (URL and dimensions).

Leave a Comment