the_author_url() WP 0.71
Устарела с версии 2.8.0. Больше не поддерживается и может быть удалена. Используйте the_author_meta().╳
Display the URL to the home page of the author of the current post.
Хуков нет.
Возвращает
null
. Null. Ничего.
Использование
the_author_url();
Заметки
- Смотрите: the_author_meta()
Список изменений
С версии 0.71 | Введена. |
Устарела с 2.8.0 | Use the_author_meta() |
Код the_author_url() the author url WP 5.7
function the_author_url() {
_deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta(\'url\')' );
the_author_meta('url');
}