the_post_thumbnail() based on the Post ID
I got the solution so self-answering the question for future users/visitors. Hope it will help someone. I think this won’t be able to generate results based on the Post ID → the_post_thumbnail( ‘large’); However, this should work → <?php echo get_the_post_thumbnail($fpid, ‘large’); ?> (Above is succesfully tested) Other possibilities → <?php echo get_the_post_thumbnail($fpid, ‘thumbnail’); ?> … Read more