the_permalink

the_permalink

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter
See hook in action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('the_permalink') is found 3 times:

  • /wp-includes/comment-template.php line 2621
    2617
    2618
    2619
    2620
    2621
    2622
    2623
    2624
    2625
    2626
    2627
        sprintf(
            /* translators: %s: Login URL. */
            __( 'You must be <a href="%s">logged in</a> to post a comment.' ),
            /** This filter is documented in wp-includes/link-template.php */
            wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) )
        )
    ),
    'logged_in_as'         => sprintf(
        '<p class="logged-in-as">%s%s</p>',
        sprintf(
            /* translators: 1: User name, 2: Edit user link, 3: Logout URL. */
  • /wp-includes/comment-template.php line 2632
    2628
    2629
    2630
    2631
    2632
    2633
    2634
    2635
    2636
    2637
    2638
            __( 'Logged in as %1$s. <a href="%2$s">Edit your profile</a>. <a href="%3$s">Log out?</a>' ),
            $user_identity,
            get_edit_user_link(),
            /** This filter is documented in wp-includes/link-template.php */
            wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) )
        ),
        $required_text
    ),
    'comment_notes_before' => sprintf(
        '<p class="comment-notes">%s%s</p>',
        sprintf(
  • /wp-includes/link-template.php line 27
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
         *
         * @param string      $permalink The permalink for the current post.
         * @param int|WP_Post $post      Post ID, WP_Post object, or 0. Default 0.
         */
        echo esc_url( apply_filters( 'the_permalink', get_permalink( $post ), $post ) );
    }
     
    /**
     * Retrieves a trailing-slashed string if the site is set for adding trailing slashes.
     *
     * Conditionally adds a trailing slash if the permalink structure has a trailing

See this hook used in plugins: