Make WordPress Core

Ticket #1531: template-functions-author.php2.diff

File template-functions-author.php2.diff, 519 bytes (added by markjaquith, 21 years ago)

Patch for WP 1.6 SVN

  • template-functions-author.php

     
    22
    33function get_the_author($idmode = '') {
    44    global $authordata;
    5     return $authordata->display_name;
     5    return apply_filters('the_author', $authordata->display_name);
    66}
    77
    88function the_author($idmode = '', $echo = true) {
     
    208208    }
    209209}
    210210
    211 ?>
    212  No newline at end of file
     211?>