Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: the_author_posts_link

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

Line Code
201           _deprecated_argument( __FUNCTION__, '2.1' );
202
203      global $authordata;
204      $link = sprintf(
205           '<a href="%1$s" title="%2$s">%3$s</a>',
206           get_author_posts_url( $authordata->ID, $authordata->user_nicename ),
207           esc_attr( sprintf( __( 'Posts by %s' ), get_the_author() ) ),
208           get_the_author()
209      );
210      echo apply_filters( 'the_author_posts_link', $link );
211 }
212
213 /**
214  * Retrieve the URL to the author page of the author of the current post.
215  *
216  * @since 2.1.0
217  * @uses $wp_rewrite WP_Rewrite
218  * @return string The URL to the author's page.
219  */