
如何使用代码和插件创建WordPress活动事件
the_author_firstname ( No parameters )
the_author_firstname是一个WordPress模板标签,用于显示当前文章作者的名字。它可以在循环内使用,以输出写当前文章的作者的名字。
显示当前文章作者的名字。
function the_author_firstname() { _deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta('first_name')' ); the_author_meta('first_name'); }