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