the_author_description

函数


the_author_description ( No parameters )
相关
  • the_author_meta()
定义位置
  • wp-includes/deprecated.php
    , line 1343
引入
1.0.0
弃用
2.8.0

Display the description of the author of the current post.

function the_author_description() {
	_deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta('description')' );
	the_author_meta('description');
}