the_author_posts_link filter-hook . WP 2.9.0
Filters the link to the author page of the author of the current post.
Usage
add_filter( 'the_author_posts_link', 'filter_function_name_2255' ); function filter_function_name_2255( $link ){ // filter... return $link; }
- $link(string)
- HTML link.
Changelog
Since 2.9.0 | Introduced. |
Where the hook is called
the_author_posts_link
wp-includes/author-template.php 315
return apply_filters( 'the_author_posts_link', $link );