Definition:
function comment_reply_link($args = array() {}
Displays the HTML content for reply to comment link.
Parameters
- array $args: Optional. Override default options.
- int $comment: Optional. Comment being replied to.
- int $post: Optional. Post that the comment is going to be displayed on.
Return values
returns:Link to show comment form, if successful. False, if comments are closed.
Source code
function comment_reply_link($args = array(), $comment = null, $post = null) {
echo get_comment_reply_link($args, $comment, $post);
}
699

February 11, 2011 


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