Changeset 13014 for trunk/wp-includes/theme.php
- Timestamp:
- 02/07/2010 09:07:35 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/theme.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/theme.php
r12915 r13014 712 712 function get_author_template() { 713 713 $author_id = absint( get_query_var( 'author' ) ); 714 $author = get_user_by( 'id', $author_id )->user_nicename; 714 $author = get_user_by( 'id', $author_id ); 715 $author = $author->user_nicename; 715 716 716 717 $templates = array();
Note: See TracChangeset
for help on using the changeset viewer.