Thread Starter
rtl93
(@rtl93)
can someone reply with an answer?
Comments have permalinks already..
Open your site, look down at the comments and hover over the # and you’ll see it has a direct link to that post and comment..
It’s the post URL plus the comment anchor..
Thread Starter
rtl93
(@rtl93)
Oh but I am looking for something like this http://i41.tinypic.com/2lvfe5s.png so you can copy the comment url.
The only difference between whats on that image is the text for the link…
Default text is a hash symbol..
#
So open up your theme’s comments.php find that, and replace it with the text “Permalink”..
You’re looking for something like this..
<a href="#comment-<?php comment_ID() ?>" title="">#</a>
Change that to..
<a href="#comment-<?php comment_ID() ?>" title="">Permalink</a>
🙂
If you can’t see anything like that, then you should have this somewhere..
<?php wp_list_comments(); ?>
If that’s the case, you’ll need to add a custom callback for the comments, let me know if that’s the case..
Thread Starter
rtl93
(@rtl93)
oh thanks lol i got it. 😀