the_author_firstname

函数
the_author_firstname ( No parameters )
相关
  • the_author_meta()
定义位置
相关方法
get_the_author_firstnamethe_author_lastnamethe_author_nicknameget_the_author_lastnamethe_author_aim
引入
0.71
弃用
2.8.0

the_author_firstname是一个WordPress模板标签,用于显示当前文章作者的名字。它可以在循环内使用,以输出写当前文章的作者的名字。

显示当前文章作者的名字。

function the_author_firstname() {
	_deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta('first_name')' );
	the_author_meta('first_name');
}

常见问题

FAQs
查看更多 >