Ticket #10691: author-template.php.10691.diff
| File author-template.php.10691.diff, 612 bytes (added by , 16 years ago) |
|---|
-
wp-includes/author-template.php
178 178 */ 179 179 function the_author_posts_link($deprecated = '') { 180 180 global $authordata; 181 printf(181 $link = sprintf( 182 182 '<a href="%1$s" title="%2$s">%3$s</a>', 183 183 get_author_posts_url( $authordata->ID, $authordata->user_nicename ), 184 184 esc_attr( sprintf( __( 'Posts by %s' ), get_the_author() ) ), 185 185 get_the_author() 186 186 ); 187 echo apply_filters( 'the_author_posts_link', $link ); 187 188 } 188 189 189 190 /**