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