Where I have to insert this code to display the featured image of the post when I share it on Social Media?
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
the_post_thumbnail();
} //end while
} //end if
?>