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 |
|---|---|
| 1033 | |
| 1034 | if ( !comments_open($post->ID) ) |
| 1035 | return false; |
| 1036 | |
| 1037 | if ( get_option('comment_registration') && !$user_ID ) { |
| 1038 | $link = '<a rel="nofollow" href="' . site_url('wp-login.php?redirect_to=' . get_permalink()) . '">' . $login_text . '</a>'; |
| 1039 | } else { |
| 1040 | $link = "<a rel='nofollow' href='" . get_permalink($post->ID) . "#$respond_id' onclick='return addComment.moveForm(\"$add_below-$post->ID\", \"0\", \"$respond_id\", \"$post->ID\")'>$reply_text</a>"; |
| 1041 | } |
| 1042 | return apply_filters('post_comments_link', $before . $link . $after, $post); |
| 1043 | } |
| 1044 | |
| 1045 | /** |
| 1046 | * Displays the HTML content for reply to post link. |
| 1047 | * @since 2.7.0 |
| 1048 | * @see get_post_reply_link() |
| 1049 | * |
| 1050 | * @param array $args Optional. Override default options. |
| 1051 | * @param int|object $post Optional. Post that the comment is going to be displayed on. |