Printing the Featured image from a specific post by id
Description
Change 133 to the id of the post that you want the featured image
Change 133 to the id of the post that you want the featured image
PHP Source Code
<!--displays the image as is-->
<?php echo get_the_post_thumbnail( 133 ); ?>
<!--Displays the image URL-->
<?php echo get_the_post_thumbnail_url( 133 ); ?>