Make WordPress Core


Ignore:
Timestamp:
06/07/2006 11:17:59 PM (19 years ago)
Author:
ryan
Message:

Reworg post/page/attachment functions. #2525

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/template-functions-author.php

    r3848 r3851  
    156156}
    157157
     158// Get author's preferred display name
     159function get_author_name( $auth_id ) {
     160    $authordata = get_userdata( $auth_id );
     161
     162    return $authordata->display_name;
     163}
     164
    158165function wp_list_authors($args = '') {
    159166    if ( is_array($args) )
Note: See TracChangeset for help on using the changeset viewer.