How can I add a Permalink link to each post? on the same line as the 'add a comment' line? I know that clicking on the post title is the permalink but I want to add the word 'permalink' to the bottom of the post as well.
Here's my WP site:
How can I add a Permalink link to each post? on the same line as the 'add a comment' line? I know that clicking on the post title is the permalink but I want to add the word 'permalink' to the bottom of the post as well.
Here's my WP site:
Add this to your theme's single.php:
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">permalink</a>
Thanks. Where in that file does it go?
This topic has been closed to new replies.