Grab featured image and place it on page/post

Author: 

Peter Luit


Description: 

Use a shortcode [thumbnail] to insert the existing thumbnail in a post. Yes, it is a simple one, but could be useful in some (conditional) cases…..




Kind:

PHP, Shortcode


PHP:

add_shortcode('thumbnail', 'thumbnail_in_content');

function thumbnail_in_content($atts) {
global $post;

return get_the_post_thumbnail($post->ID);
}


Shortcode:

[thumbnail]