I would like to add a simple comments link to my posts so that a visitor can be quickly taken to the bottom of the post where they can comment. Thanks for you time and help, it is greatly appreciated.
I would like to add a simple comments link to my posts so that a visitor can be quickly taken to the bottom of the post where they can comment. Thanks for you time and help, it is greatly appreciated.
Gosh, I bet you could create a link with html that could do that, but I forget what that code is called.
I've tried, this suggestion but it doesn't work:
http://www.nathanrice.net/blog/comment-link-in-singlephp
Got it:
<div align="right"><a rel="nofollow" href="<?php the_permalink(); ?>#respond"><p id="comments"><?php comments_number('No comments', '1 Comment', '% Comments' );?></p></a></div>
or
<div align="right"><a rel="nofollow" href="<?php the_permalink(); ?>#comments"><p id="comments"><?php comments_number('No comments', '1 Comment', '% Comments' );?></p></a></div>
depending on the your theme's comments.php file. It is just a matter of using #comments or #respond in the above examples.
This topic has been closed to new replies.