• Resolved bpgbo

    (@bpgbo)


    Hi, on my homepage, I would love to have the “featured image” a hyperlink as well as the post title. Currently, only post title is hyperlinked to the post, would love to have the featured image hyperlink to the post as well. Possible? Thanks!!! – Bernie

    • This topic was modified 3 years, 5 months ago by bpgbo.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter bpgbo

    (@bpgbo)

    Nvm. I found it on internet

    function wpb_autolink_featured_images( $html, $post_id, $post_image_id ) {
    
    If (! is_singular()) { 
    
    $html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_the_title( $post_id ) ) . '">' . $html . '</a>';
    return $html;
    
    } else { 
    
    return $html;
    
    }
    
    }
    add_filter( 'post_thumbnail_html', 'wpb_autolink_featured_images', 10, 3 );
    Theme Author Guido

    (@guido07111975)

    Hi,

    Thanks for sharing!

    Guido

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to make featured image on home page a hyperlink’ is closed to new replies.