How to get featured image of last post in a category?
Correct this line in your code at the end of function. echo get_the_post_thumbnail($page->ID, ‘thumbnail’); should be echo get_the_post_thumbnail($post_id, ‘thumbnail’); also as per WordPress documentation, category_name parameter should be a string representing category slug, not name. So, the complete code should look like this: $arg = array( ‘orderby’ => ‘date’, ‘number’ => 10, ); $categories = … Read more