the_author_link

Definition:
function the_author_link() {}

Display either author’s link or author’s name.
If the author has a home page set, echo an HTML link, otherwise just echo the author’s name.

Source code

function the_author_link() {

	echo get_the_author_link();

}

2967

the_author_lastname

Definition:
function the_author_lastname() {}

Display the last name of the author of the current post.

Source code

function the_author_lastname() {

	_deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'last_name\')' );

	the_author_meta('last_name');

}

2965

the_author_ID

Definition:
function the_author_ID() {}

Display the ID of the author of the current post.

Source code

function the_author_ID() {

	_deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'ID\')' );

	the_author_meta('ID');

}

2963

the_author_icq

Definition:
function the_author_icq() {}

Display the ICQ number of the author of the current post.

Source code

function the_author_icq() {

	_deprecated_function( __FUNCTION__, '2.8', 'the_author_meta(\'icq\')' );

	the_author_meta('icq');

}

2961