描述:
获取当前文章的作者名称
用法:
<?php $author = get_the_author(); ?>
参数:
$deprecated
(string) (可选) Deprecated.
默认值: ''
源文件:
/**
* Retrieve the author of the current post.
*
* @since 1.5.0
*
* @global object $authordata The current author's DB object.
*
* @param string $deprecated Deprecated.
* @return string|null The author's display name.
*/
function get_the_author($deprecated = '') {
global $authordata;
if ( !empty( $deprecated ) )
_deprecated_argument( __FUNCTION__, '2.1' );
/**
* Filter the display name of the current post's author.
*
* @since 2.9.0
*
* @param string $authordata->display_name The author's display name.
*/
return apply_filters('the_author', is_object($authordata) ? $authordata->display_name : null);
}
发表评论
还没有评论,快来抢沙发吧!