Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_reply_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
981      if ( 'open' != $post->comment_status )
982           return false;
983
984      $link = '';
985
986      if ( get_option('comment_registration') && !$user_ID )
987           $link = '<a rel="nofollow" href="' . site_url('wp-login.php?redirect_to=' . get_permalink()) . '">' . $login_text . '</a>';
988      else
989           $link = "<a rel='nofollow' href='" . wp_specialchars( add_query_arg( 'replytocom', $comment->comment_ID ) ) . "#" . $respond_id . "' onclick='return addComment.moveForm(\"$add_below-$comment->comment_ID\", \"$comment->comment_ID\", \"$respond_id\", \"$post->ID\")'>$reply_text</a>";
990      return apply_filters('comment_reply_link', $before . $link . $after, $args, $comment, $post);
991 }
992
993 /**
994  * Displays the HTML content for reply to comment link.
995  *
996  * @since 2.7.0
997  * @see get_comment_reply_link() Echoes result
998  *
999  * @param array $args Optional. Override default options.