caskew2154
2/13/2020 - 2:51 PM

Generate Shortcode for Featured Image

Create the [featuredimage] shortcode - to display a post/products featured image.

add_shortcode('featuredimage', 'thumbnail_in_content');

function thumbnail_in_content($atts) {
    global $post;

    return get_the_post_thumbnail($post->ID);
}