WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
1056 | if ( !comments_open($post->ID) ) |
1057 | return false; |
1058 |
|
1059 | $link = ''; |
1060 |
|
1061 | if ( get_option('comment_registration') && !$user_ID ) |
1062 | $link = '<a rel="nofollow" class="comment-reply-login" href="' . esc_url( wp_login_url( get_permalink() ) ) . '">' . $login_text . '</a>'; |
1063 | else |
1064 | $link = "<a class='comment-reply-link' href='" . esc_url( 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>"; |
1065 | return apply_filters('comment_reply_link', $before . $link . $after, $args, $comment, $post); |
1066 | } |
1067 |
|
1068 | /** |
1069 | * Displays the HTML content for reply to comment link. |
1070 | * |
1071 | * @since 2.7.0 |
1072 | * @see get_comment_reply_link() Echoes result |
1073 | * |
1074 | * @param array $args Optional. Override default options. |