Changeset 6026 for trunk/wp-includes/author-template.php
- Timestamp:
- 09/03/07 23:32:58 (1 year ago)
- Files:
-
- trunk/wp-includes/author-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/author-template.php
r5767 r6026 301 301 function the_author_posts_link($deprecated = '') { 302 302 global $authordata; 303 printf( 304 '<a href="%1$s" title="%2$s">%3$s</a>', 305 get_author_posts_url( $authordata->ID, $authordata->user_nicename ), 306 sprintf( __( 'Posts by %s' ), attribute_escape( get_the_author() ) ), 303 printf( 304 '<a href="%1$s" title="%2$s">%3$s</a>', 305 get_author_posts_url( $authordata->ID, $authordata->user_nicename ), 306 sprintf( __( 'Posts by %s' ), attribute_escape( get_the_author() ) ), 307 307 get_the_author() 308 308 ); … … 364 364 global $wpdb; 365 365 366 $defaults = array( 367 'optioncount' => false, 'exclude_admin' => true, 368 'show_fullname' => false, 'hide_empty' => true, 366 $defaults = array( 367 'optioncount' => false, 'exclude_admin' => true, 368 'show_fullname' => false, 'hide_empty' => true, 369 369 'feed' => '', 'feed_image' => '', 'echo' => true 370 370 );
