检索当前帖子的作者的描述。
原型
get_the_author_description()
返回值
(string)
作者的描述。
源文件
路径:wp-includes/deprecated.php
<?php
...
function get_the_author_description() {
_deprecated_function( __FUNCTION__, '2.8.0', 'get_the_author_meta('description')' );
return get_the_author_meta('description');
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/get_the_author_description/