get_the_author_url()WP 1.5.0

Устарела с версии 2.8.0. Больше не поддерживается и может быть удалена. Используйте get_the_author_meta().

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

Хуков нет.

Возвращает

Строку. The URL to the author's page.

Использование

get_the_author_url();

Заметки

Список изменений

С версии 1.5.0 Введена.
Устарела с 2.8.0 Use get_the_author_meta()

Код get_the_author_url() WP 6.5.2

function get_the_author_url() {
	_deprecated_function( __FUNCTION__, '2.8.0', 'get_the_author_meta(\'url\')' );
	return get_the_author_meta('url');
}