php - 'comment_popup_link()' with different #ID on Genesis Framework -


i want add "comment" , "reply" links under every post on wordpress theme. standard "comment_popup_link()" function creates such link:

http://website.com/page/#comments 

what want create one, next above, looking this:

http://website.com/page/#reply 

how can that?

i'm trying add on wordpress theme genesis framework. there's shortcode available - [post_comments] same thing 'comment_popup_link()'. output of above shortcode/function shown in first code example.

thanks, luca

a dirty , fast solution this:

<a href="<?php the_permalink(); ?>#reply">     <?php comments_number('no comments', '1 comment', '% comments'); ?> </a> 

Comments