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