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