function get_pin($atts) { global $post; if ($post) { $pinterestimage = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'full'); if ($pinterestimage) { return 'Pin It'; } else { return 'No Pinterest image available.'; } } else { return 'No post found.'; } } add_shortcode('pin', 'get_pin');