mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-01 00:10:36 +01:00
More user
git-svn-id: http://svn.automattic.com/wordpress/trunk@2633 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
de9cc8b12c
commit
10586c54bc
@ -17,4 +17,5 @@ gzip_compression();
|
|||||||
require_once(ABSPATH . WPINC . '/template-loader.php');
|
require_once(ABSPATH . WPINC . '/template-loader.php');
|
||||||
|
|
||||||
endif;
|
endif;
|
||||||
|
|
||||||
?>
|
?>
|
@ -267,31 +267,7 @@ function get_cat_ID($cat_name='General') {
|
|||||||
function get_author_name( $auth_id ) {
|
function get_author_name( $auth_id ) {
|
||||||
$authordata = get_userdata( $auth_id );
|
$authordata = get_userdata( $auth_id );
|
||||||
|
|
||||||
switch( $authordata['user_idmode'] ) {
|
return $authordata->display_name;
|
||||||
case 'nickname':
|
|
||||||
$authorname = $authordata['user_nickname'];
|
|
||||||
break;
|
|
||||||
case 'login':
|
|
||||||
$authorname = $authordata['user_login'];
|
|
||||||
break;
|
|
||||||
case 'firstname':
|
|
||||||
$authorname = $authordata['user_firstname'];
|
|
||||||
break;
|
|
||||||
case 'lastname':
|
|
||||||
$authorname = $authordata['user_lastname'];
|
|
||||||
break;
|
|
||||||
case 'namefl':
|
|
||||||
$authorname = $authordata['user_firstname'].' '.$authordata['user_lastname'];
|
|
||||||
break;
|
|
||||||
case 'namelf':
|
|
||||||
$authorname = $authordata['user_lastname'].' '.$authordata['user_firstname'];
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
$authorname = $authordata['user_nickname'];
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return $authorname;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// get extended entry info (<!--more-->)
|
// get extended entry info (<!--more-->)
|
||||||
|
@ -48,7 +48,6 @@ function get_userdata( $user_id ) {
|
|||||||
foreach ( $metavalues as $meta )
|
foreach ( $metavalues as $meta )
|
||||||
$user->{$meta->meta_key} = $meta->meta_value;
|
$user->{$meta->meta_key} = $meta->meta_value;
|
||||||
|
|
||||||
die(var_dump($user));
|
|
||||||
$cache_userdata[$cache_userdata[$userid]->user_login] =& $cache_userdata[$user_id];
|
$cache_userdata[$cache_userdata[$userid]->user_login] =& $cache_userdata[$user_id];
|
||||||
|
|
||||||
return $cache_userdata[$user_id];
|
return $cache_userdata[$user_id];
|
||||||
|
@ -1,20 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
function get_the_author($idmode = '') {
|
function get_the_author($idmode = '') {
|
||||||
global $authordata;
|
global $authordata;
|
||||||
if (empty($idmode)) {
|
return $author_data->display_name;
|
||||||
$idmode = $authordata->user_idmode;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($idmode == 'nickname') $id = $authordata->user_nickname;
|
|
||||||
if ($idmode == 'login') $id = $authordata->user_login;
|
|
||||||
if ($idmode == 'firstname') $id = $authordata->user_firstname;
|
|
||||||
if ($idmode == 'lastname') $id = $authordata->user_lastname;
|
|
||||||
if ($idmode == 'namefl') $id = $authordata->user_firstname.' '.$authordata->user_lastname;
|
|
||||||
if ($idmode == 'namelf') $id = $authordata->user_lastname.' '.$authordata->user_firstname;
|
|
||||||
if (!$idmode) $id = $authordata->user_nickname;
|
|
||||||
|
|
||||||
return $id;
|
|
||||||
}
|
|
||||||
function the_author($idmode = '', $echo = true) {
|
function the_author($idmode = '', $echo = true) {
|
||||||
if ($echo) echo get_the_author($idmode);
|
if ($echo) echo get_the_author($idmode);
|
||||||
return get_the_author($idmode);
|
return get_the_author($idmode);
|
||||||
|
Loading…
Reference in New Issue
Block a user