• Hi
    Is it possible to link the featured image so that on the blog page if you click on the image it links to the relevant post?

Viewing 2 replies - 1 through 2 (of 2 total)
  • @eic2010

    If you can code on your own then you can achieve it via the child theme.

    Thanks.

    Thread Starter eic2010

    (@eic2010)

    I installed the code snippets plugin and used the following

    function wpb_autolink_featured_images( $html, $post_id, $post_image_id ) {
    $html = ‘‘ . $html . ‘‘;
    return $html;
    }
    add_filter( ‘post_thumbnail_html’, ‘wpb_autolink_featured_images’, 10, 3 );

    This seems to have worked.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Featured Image Link?’ is closed to new replies.