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

February 12, 2011 


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