get_the_author_url

Definition:
function get_the_author_url() {}

Retrieve the URL to the home page of the author of the current post.

Return values

returns:The URL to the author’s page.

Source code

function get_the_author_url() {

	_deprecated_function( __FUNCTION__, '2.8', 'get_the_author_meta(\'url\')' );

	return get_the_author_meta('url');

}

1811

No comments yet... Be the first to leave a reply!

Leave a comment