
WordPress钩子详解:如何使用动作、过滤器和自定义钩子
the_author_email ( No parameters )
the_author_email: 此函数显示当前文章的作者或指定用户的电子邮件地址。
显示当前文章的作者的电子邮件。
function the_author_email() { _deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta('email')' ); the_author_meta('email'); }