Resurrect idmode. Props MichaelH and westi. fixes #2386

git-svn-id: https://develop.svn.wordpress.org/trunk@4140 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-08-30 18:09:12 +00:00
parent 7664b616fd
commit 9abefc0104
1 changed files with 29 additions and 2 deletions

View File

@ -2,7 +2,34 @@
function get_the_author($idmode = '') {
global $authordata;
return apply_filters('the_author', $authordata->display_name);
switch ($idmode) {
case 'display_name':
$id = $authordata->display_name;
break;
case 'nickname':
$id = $authordata->nickname;
break;
case 'login':
$id = $authordata->user_login;
break;
case 'firstname':
$id = $authordata->user_firstname;
break;
case 'lastname':
$id = $authordata->user_lastname;
break;
case 'namefl':
$id = $authordata->user_firstname.' '.$authordata->user_lastname;
break;
case 'namelf':
$id = $authordata->user_lastname.' '.$authordata->user_firstname;
break;
default:
$id = $authordata->display_name;
}
return apply_filters('the_author', $id);
}
function the_author($idmode = '', $echo = true) {
@ -239,4 +266,4 @@ function wp_list_authors($args = '') {
}
}
?>
?>