get_the_author()
Получает имя (display_name) автора поста. Используется внутри цикла WordPress.
Основа для: get_the_author_posts_link(), the_author()
Хуки из функции
Возвращает
Строку
. Отображаемое имя автора (display_name) или пустая строка, если display_name не указан.
Использование
$author = get_the_author();
Примеры
#1 Выведем "публичное" имя автора:
echo get_the_author();
Заметки
- Global. WP_User. $authordata The current author's data.
Список изменений
С версии 1.5.0 | Введена. |
С версии 6.3.0 | Returns an empty string if the author's display name is unknown. |
Код get_the_author() get the author WP 6.6.1
function get_the_author( $deprecated = '' ) { global $authordata; if ( ! empty( $deprecated ) ) { _deprecated_argument( __FUNCTION__, '2.1.0' ); } /** * Filters the display name of the current post's author. * * @since 2.9.0 * * @param string $display_name The author's display name. */ return apply_filters( 'the_author', is_object( $authordata ) ? $authordata->display_name : '' ); }