Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_comments_link

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1067
1068      if ( !comments_open($post->ID) )
1069           return false;
1070
1071      if ( get_option('comment_registration') && !$user_ID ) {
1072           $link = '<a rel="nofollow" href="' . wp_login_url( get_permalink() ) . '">' . $login_text . '</a>';
1073      } else {
1074           $link = "<a rel='nofollow' class='comment-reply-link' href='" . get_permalink($post->ID) . "#$respond_id' onclick='return addComment.moveForm(\"$add_below-$post->ID\", \"0\", \"$respond_id\", \"$post->ID\")'>$reply_text</a>";
1075      }
1076      return apply_filters('post_comments_link', $before . $link . $after, $post);
1077 }
1078
1079 /**
1080  * Displays the HTML content for reply to post link.
1081  * @since 2.7.0
1082  * @see get_post_reply_link()
1083  *
1084  * @param array $args Optional. Override default options.
1085  * @param int|object $post Optional. Post that the comment is going to be displayed on.