Skip to content

Instantly share code, notes, and snippets.

@diggeddy
Created December 27, 2017 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diggeddy/872e4e98bbe0a8f496484c97af92fda5 to your computer and use it in GitHub Desktop.
Save diggeddy/872e4e98bbe0a8f496484c97af92fda5 to your computer and use it in GitHub Desktop.
Add post thumbnail with short code
/* Post thumbnail shortcode */
add_shortcode('featured_img', 'fi_in_content');
function fi_in_content($atts) {
global $post;
return get_the_post_thumbnail($post->ID);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment