Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_permalink

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

This hook occurs 2 times in this file.

Line Code
2543                ),
2544                '<textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525"' . $required_attribute . '></textarea>'
2545           ),
2546           'must_log_in'          => sprintf(
2547                '<p class="must-log-in">%s</p>',
2548                sprintf(
2549                     /* translators: %s: Login URL. */
2550                     __( 'You must be <a href="%s">logged in</a> to post a comment.' ),
2551                     /** This filter is documented in wp-includes/link-template.php */
2552                     wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) )
2553                )
2554           ),
2555           'logged_in_as'         => sprintf(
2556                '<p class="logged-in-as">%s%s</p>',
2557                sprintf(
2558                     /* translators: 1: User name, 2: Edit user link, 3: Logout URL. */
2559                     __( 'Logged in as %1$s. <a href="%2$s">Edit your profile</a>. <a href="%3$s">Log out?</a>' ),
2560                     $user_identity,
2561                     get_edit_user_link(),
2562                     /** This filter is documented in wp-includes/link-template.php */
2563                     wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) )
2564                ),
2565                $required_text
2566           ),
2567           'comment_notes_before' => sprintf(
2568                '<p class="comment-notes">%s%s</p>',
2569                sprintf(
2570                     '<span id="email-notes">%s</span>',
2571                     __( 'Your email address will not be published.' )
2572                ),