the_author

过滤钩子
apply_filters( 'the_author', is_object( $authordata )
参数
  • (string|null) $display_name The author's display name.
    Required:
定义位置
相关勾子
the_author_linkatom_authorthe_categorythe_generatorthe_editor
相关方法
the_authorthe_author_idthe_author_msnthe_author_aimthe_author_icqthe_author_yim
引入
2.9.0
弃用
-

the_author是一个模板标签,用于显示一个文章的作者的名字。它可以用来在网站的不同地方显示作者的名字,例如在文章的元数据或作者简介部分。

过滤当前文章作者的显示名称。

return apply_filters( 'the_author', is_object( $authordata ) ? $authordata->display_name : null );

常见问题

FAQs
查看更多 >