View Single Post
Old 04-28-2020, 11:18 AM  
machinegunkelly
Confirmed User
 
machinegunkelly's Avatar
 
Join Date: Jun 2003
Posts: 3,276
// outside the loop
Code:
    $post = get_post(99);
    $thumb_url = get_the_post_thumbnail_url($post->ID,'full'); 

    echo '<a href="'.esc_url($thumb_url).'">Click Here</a>';
// inside the WP loop

Code:
    while ( have_posts() ) {
        the_post(); 
        $thumb_url = get_the_post_thumbnail_url(get_the_ID(),'full'); 
        echo '<a href="'.esc_url($thumb_url).'">Click here</a>';
    endwhile;
__________________
dead.
machinegunkelly is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote