• Hi,

    I would like to know if the Pro version holds the possibility to make featured images on homepage clickable.

    Thanks,
    Nynke

Viewing 1 replies (of 1 total)
  • Just edit your front-page.php somewhere around line 30 from

    <?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } ?>

    to

    <?php if ( has_post_thumbnail() ) { ?>
                    <a href="<?php the_permalink(); ?>">
                            <?php the_post_thumbnail(); ?>
                    </a>
                    <?php } ?>

    and it will link to the page.

Viewing 1 replies (of 1 total)
  • The topic ‘Featured Images Clickable supported in Pro?’ is closed to new replies.