List of subcategories with featured image
How can I add the featured image? From what I can tell in your code, you’ve stored all category featured images in the category_images option. So you can use get_option to retrieve the featured image for each category: $image_urls = get_option( ‘category_images’, array() ); foreach ( $categories as $category ) { $cat_id = $category->term_id; $image_url … Read more