How to provide link to corresponding single page for post title, image etc…

  • 0

Include below code inside ‘href’ attribute of ‘a’ tag:

<?php the_permalink(); ?>

Eg:

<a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a>

<a href=”<?php the_permalink(); ?>”><?php the_post_thumbnail(); ?></a>

Include below code inside ‘href’ attribute of ‘a’ tag: <?php the_permalink(); ?> Eg: <a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a> <a href=”<?php the_permalink(); ?>”><?php the_post_thumbnail(); ?></a>

Include below code inside ‘href’ attribute of ‘a’ tag: <?php the_permalink(); ?> Eg: <a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a> <a href=”<?php the_permalink(); ?>”><?php the_post_thumbnail(); ?></a>

Leave a Reply

Your email address will not be published. Required fields are marked *