Definition:
function get_comments_link($post_id = 0) {}
Retrieves the link to the current post comments.
Parameters
- int $post_id: Optional post id
Return values
returns:The link to the comments
Source code
function get_comments_link($post_id = 0) {
return get_permalink($post_id) . '#comments';
}
1282

February 12, 2011 


No comments yet... Be the first to leave a reply!