Right now, in the Sentence theme, the title of each blog post is its permalink. I also want to add the word and link PERMALINK underneath each post on the same line as COMMENTS, LIKES, etc.
I found the php that creates the permalink in the title:
<a href="<?php echo get_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link:','avia_framework')?> <?php the_title(); ?>"><?php the_title(); ?>
I'd like to know two things: 1. what is the correct php to do this (is it the following)?
<a href="<?php echo get_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link:','avia_framework')?> PERMALINK ?>
And, 2. where shall I place this to accomplish this task? What file and where in that file. Thanks.














