2004-01-27 10:58:01 +01:00
< ? php
2005-06-13 01:22:06 +02:00
2004-12-16 00:15:17 +01:00
function get_the_author ( $idmode = '' ) {
2005-10-12 19:01:50 +02:00
global $authordata ;
return apply_filters ( 'the_author' , $authordata -> display_name );
2004-01-27 10:58:01 +01:00
}
2005-06-13 01:22:06 +02:00
2004-12-16 00:15:17 +01:00
function the_author ( $idmode = '' , $echo = true ) {
2005-10-12 19:01:50 +02:00
if ( $echo )
echo get_the_author ( $idmode );
2004-12-16 00:15:17 +01:00
return get_the_author ( $idmode );
}
function get_the_author_description () {
2005-10-12 19:01:50 +02:00
global $authordata ;
2005-11-23 19:01:32 +01:00
return $authordata -> description ;
2004-12-16 00:15:17 +01:00
}
function the_author_description () {
2005-10-12 19:01:50 +02:00
echo get_the_author_description ();
2004-12-16 00:15:17 +01:00
}
function get_the_author_login () {
2005-10-12 19:01:50 +02:00
global $authordata ;
return $authordata -> user_login ;
2004-01-27 10:58:01 +01:00
}
2005-10-12 19:01:50 +02:00
2004-01-27 10:58:01 +01:00
function the_author_login () {
2005-10-12 19:01:50 +02:00
echo get_the_author_login ();
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
function get_the_author_firstname () {
2005-10-12 19:01:50 +02:00
global $authordata ;
return $authordata -> first_name ;
2004-12-16 00:15:17 +01:00
}
2004-01-27 10:58:01 +01:00
function the_author_firstname () {
2005-10-12 19:01:50 +02:00
echo get_the_author_firstname ();
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
function get_the_author_lastname () {
2005-10-12 19:01:50 +02:00
global $authordata ;
return $authordata -> last_name ;
2004-12-16 00:15:17 +01:00
}
2005-10-12 19:01:50 +02:00
2004-01-27 10:58:01 +01:00
function the_author_lastname () {
2005-10-12 19:01:50 +02:00
echo get_the_author_lastname ();
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
function get_the_author_nickname () {
2005-10-12 19:01:50 +02:00
global $authordata ;
return $authordata -> nickname ;
2004-12-16 00:15:17 +01:00
}
2005-10-12 19:01:50 +02:00
2004-01-27 10:58:01 +01:00
function the_author_nickname () {
2005-10-12 19:01:50 +02:00
echo get_the_author_nickname ();
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
function get_the_author_ID () {
2005-10-12 19:01:50 +02:00
global $authordata ;
return $authordata -> ID ;
2004-12-16 00:15:17 +01:00
}
2004-01-27 10:58:01 +01:00
function the_author_ID () {
2005-10-12 19:01:50 +02:00
echo get_the_author_id ();
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
function get_the_author_email () {
2004-12-23 22:52:09 +01:00
global $authordata ;
return $authordata -> user_email ;
2004-12-16 00:15:17 +01:00
}
2004-12-23 22:52:09 +01:00
2004-01-27 10:58:01 +01:00
function the_author_email () {
2004-12-23 22:52:09 +01:00
echo apply_filters ( 'the_author_email' , get_the_author_email () );
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
function get_the_author_url () {
2005-10-12 19:01:50 +02:00
global $authordata ;
return $authordata -> user_url ;
2004-12-16 00:15:17 +01:00
}
2005-10-12 19:01:50 +02:00
2004-01-27 10:58:01 +01:00
function the_author_url () {
2005-10-12 19:01:50 +02:00
echo get_the_author_url ();
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
function get_the_author_icq () {
2005-10-12 19:01:50 +02:00
global $authordata ;
return $authordata -> icq ;
2004-12-16 00:15:17 +01:00
}
2005-10-12 19:01:50 +02:00
2004-01-27 10:58:01 +01:00
function the_author_icq () {
2005-10-12 19:01:50 +02:00
echo get_the_author_icq ();
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
function get_the_author_aim () {
2005-10-12 19:01:50 +02:00
global $authordata ;
return str_replace ( ' ' , '+' , $authordata -> aim );
2004-12-16 00:15:17 +01:00
}
2005-10-12 19:01:50 +02:00
2004-01-27 10:58:01 +01:00
function the_author_aim () {
2005-10-12 19:01:50 +02:00
echo get_the_author_aim ();
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
function get_the_author_yim () {
2005-10-12 19:01:50 +02:00
global $authordata ;
return $authordata -> yim ;
2004-12-16 00:15:17 +01:00
}
2005-10-12 19:01:50 +02:00
2004-01-27 10:58:01 +01:00
function the_author_yim () {
2005-10-12 19:01:50 +02:00
echo get_the_author_yim ();
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
function get_the_author_msn () {
2005-10-12 19:01:50 +02:00
global $authordata ;
return $authordata -> msn ;
2004-12-16 00:15:17 +01:00
}
2005-10-12 19:01:50 +02:00
2004-01-27 10:58:01 +01:00
function the_author_msn () {
2005-10-12 19:01:50 +02:00
echo get_the_author_msn ();
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
function get_the_author_posts () {
2005-10-12 19:01:50 +02:00
global $post ;
$posts = get_usernumposts ( $post -> post_author );
2005-06-13 10:32:44 +02:00
return $posts ;
2004-12-16 00:15:17 +01:00
}
2005-10-12 19:01:50 +02:00
2004-01-27 10:58:01 +01:00
function the_author_posts () {
2005-10-12 19:01:50 +02:00
echo get_the_author_posts ();
2004-01-27 10:58:01 +01:00
}
2004-12-16 00:15:17 +01:00
/* the_author_posts_link() requires no get_, use get_author_link() */
2004-04-18 21:20:37 +02:00
function the_author_posts_link ( $idmode = '' ) {
2005-10-12 19:01:50 +02:00
global $authordata ;
2004-04-18 21:20:37 +02:00
2005-10-12 19:01:50 +02:00
echo '<a href="' . get_author_link ( 0 , $authordata -> ID , $authordata -> user_nicename ) . '" title="' . sprintf ( __ ( " Posts by %s " ), wp_specialchars ( the_author ( $idmode , false ))) . '">' . the_author ( $idmode , false ) . '</a>' ;
2004-04-18 21:20:37 +02:00
}
2004-03-19 17:20:49 +01:00
function get_author_link ( $echo = false , $author_id , $author_nicename ) {
2005-02-07 08:37:53 +01:00
global $wpdb , $wp_rewrite , $post , $cache_userdata ;
2005-10-12 19:01:50 +02:00
$auth_ID = $author_id ;
$link = $wp_rewrite -> get_author_permastruct ();
if ( empty ( $link ) ) {
$file = get_settings ( 'home' ) . '/' ;
$link = $file . '?author=' . $auth_ID ;
} else {
if ( '' == $author_nicename )
$author_nicename = $cache_userdata [ $author_id ] -> user_nicename ;
$link = str_replace ( '%author%' , $author_nicename , $link );
$link = get_settings ( 'home' ) . trailingslashit ( $link );
}
$link = apply_filters ( 'author_link' , $link , $author_id , $author_nicename );
if ( $echo )
echo $link ;
return $link ;
2004-03-19 17:20:49 +01:00
}
function wp_list_authors ( $args = '' ) {
parse_str ( $args , $r );
2005-10-12 19:01:50 +02:00
if ( ! isset ( $r [ 'optioncount' ]) )
$r [ 'optioncount' ] = false ;
if ( ! isset ( $r [ 'exclude_admin' ]) )
$r [ 'exclude_admin' ] = true ;
if ( ! isset ( $r [ 'show_fullname' ]) )
$r [ 'show_fullname' ] = false ;
if ( ! isset ( $r [ 'hide_empty' ]) )
$r [ 'hide_empty' ] = true ;
if ( ! isset ( $r [ 'feed' ]) )
$r [ 'feed' ] = '' ;
if ( ! isset ( $r [ 'feed_image' ]) )
$r [ 'feed_image' ] = '' ;
2004-03-19 17:20:49 +01:00
2004-09-03 06:03:55 +02:00
list_authors ( $r [ 'optioncount' ], $r [ 'exclude_admin' ], $r [ 'show_fullname' ], $r [ 'hide_empty' ], $r [ 'feed' ], $r [ 'feed_image' ]);
2004-03-19 17:20:49 +01:00
}
2004-03-23 05:45:27 +01:00
function list_authors ( $optioncount = false , $exclude_admin = true , $show_fullname = false , $hide_empty = true , $feed = '' , $feed_image = '' ) {
2005-10-12 19:01:50 +02:00
global $wpdb ;
$query = " SELECT ID, user_nicename from $wpdb->users " . ( $exclude_admin ? " WHERE user_login <> 'admin' " : '' ) . " ORDER BY display_name " ;
$authors = $wpdb -> get_results ( $query );
2004-03-19 17:20:49 +01:00
2005-10-12 19:01:50 +02:00
foreach ( $authors as $author ) {
2005-06-13 01:14:52 +02:00
$author = get_userdata ( $author -> ID );
2005-10-12 19:01:50 +02:00
$posts = get_usernumposts ( $author -> ID );
$name = $author -> nickname ;
if ( $show_fullname && ( $author -> first_name != '' && $author -> last_name != '' ) )
$name = " $author->first_name $author->last_name " ;
if ( ! ( $posts == 0 && $hide_empty ) )
echo " <li> " ;
if ( $posts == 0 ) {
if ( ! $hide_empty )
2005-01-24 08:55:03 +01:00
$link = $name ;
2005-10-12 19:01:50 +02:00
} else {
$link = '<a href="' . get_author_link ( 0 , $author -> ID , $author -> user_nicename ) . '" title="' . sprintf ( __ ( " Posts by %s " ), wp_specialchars ( $author -> display_name )) . '">' . $name . '</a>' ;
2004-03-23 05:45:27 +01:00
2005-10-12 19:01:50 +02:00
if ( ( ! empty ( $feed_image )) || ( ! empty ( $feed )) ) {
$link .= ' ' ;
if ( empty ( $feed_image ))
$link .= '(' ;
$link .= '<a href="' . get_author_rss_link ( 0 , $author -> ID , $author -> user_nicename ) . '"' ;
2004-03-23 05:45:27 +01:00
2005-10-12 19:01:50 +02:00
if ( ! empty ( $feed ) ) {
$title = ' title="' . $feed . '"' ;
$alt = ' alt="' . $feed . '"' ;
$name = $feed ;
$link .= $title ;
}
2004-03-23 05:45:27 +01:00
2005-10-12 19:01:50 +02:00
$link .= '>' ;
2004-03-23 05:45:27 +01:00
2005-10-12 19:01:50 +02:00
if ( ! empty ( $feed_image ) )
$link .= " <img src= \" $feed_image\ " border = \ " 0 \" $alt $title " . ' />' ;
else
$link .= $name ;
2004-03-23 05:45:27 +01:00
2005-10-12 19:01:50 +02:00
$link .= '</a>' ;
2004-03-23 05:45:27 +01:00
2005-10-12 19:01:50 +02:00
if ( empty ( $feed_image ) )
$link .= ')' ;
}
2004-03-23 05:45:27 +01:00
2005-10-12 19:01:50 +02:00
if ( $optioncount )
$link .= ' (' . $posts . ')' ;
2004-03-23 05:45:27 +01:00
2005-10-12 19:01:50 +02:00
}
2004-03-23 05:45:27 +01:00
2005-10-12 19:01:50 +02:00
if ( ! ( $posts == 0 && $hide_empty ) )
echo " $link </li> " ;
}
2004-03-19 17:20:49 +01:00
}
2005-10-12 19:01:50 +02:00
?>