the_author_link

the_author_link

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('the_author_link') is found 1 times:

  • /wp-includes/author-template.php line 257
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
             * @param string  $link       The default rendered author HTML link.
             * @param string  $author_url Author's URL.
             * @param WP_User $authordata Author user data.
             */
            return apply_filters( 'the_author_link', $link, $author_url, $authordata );
        } else {
            return get_the_author();
        }
    }
     
    /**