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.
This hook occurs 2 times in this file.
| Line | Code |
|---|---|
| 2449 | ), |
| 2450 | '<textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525"' . $required_attribute . '></textarea>' |
| 2451 | ), |
| 2452 | 'must_log_in' => sprintf( |
| 2453 | '<p class="must-log-in">%s</p>', |
| 2454 | sprintf( |
| 2455 | /* translators: %s: Login URL. */ |
| 2456 | __( 'You must be <a href="%s">logged in</a> to post a comment.' ), |
| 2457 | /** This filter is documented in wp-includes/link-template.php */ |
| 2458 | wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) ) |
| 2459 | ) |
| 2460 | ), |
| 2461 | 'logged_in_as' => sprintf( |
| 2462 | '<p class="logged-in-as">%s%s</p>', |
| 2463 | sprintf( |
| 2464 | /* translators: 1: Edit user link, 2: Accessibility text, 3: User name, 4: Logout URL. */ |
| 2465 | __( '<a href="%1$s" aria-label="%2$s">Logged in as %3$s</a>. <a href="%4$s">Log out?</a>' ), |
| 2466 | get_edit_user_link(), |
| 2467 | /* translators: %s: User name. */ |
| 2468 | esc_attr( sprintf( __( 'Logged in as %s. Edit your profile.' ), $user_identity ) ), |
| 2469 | $user_identity, |
| 2470 | /** This filter is documented in wp-includes/link-template.php */ |
| 2471 | wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) ) |
| 2472 | ), |
| 2473 | $required_text |
| 2474 | ), |
| 2475 | 'comment_notes_before' => sprintf( |
| 2476 | '<p class="comment-notes">%s%s</p>', |
| 2477 | sprintf( |
| 2478 | '<span id="email-notes">%s</span>', |
| 2479 | __( 'Your email address will not be published.' ) |
| 2480 | ), |