функция
since 1.2.0
the_author_posts_link()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
the_author_posts_link( string $deprecated = '' )
Описание
Выводит HTML-ссылку на страницу автора текущей записи.
Параметры
$deprecated
string
необязательный
= ''
Не используется.
Исходный код
wp-includes/author-template.php:366
function the_author_posts_link( $deprecated = '' ) {
if ( ! empty( $deprecated ) ) {
_deprecated_argument( __FUNCTION__, '2.1.0' );
}
echo get_the_author_posts_link();
}
История изменений
| Версия | Описание |
|---|---|
| 4.4.0 | Converted into a wrapper for get_the_author_posts_link() |
| 1.2.0 | Introduced. |

