the_author_email

函数


the_author_email ( No parameters )
相关
  • the_author_meta()
定义位置
  • wp-includes/deprecated.php
    , line 1473
引入
0.71
弃用
2.8.0

Display the email of the author of the current post.

function the_author_email() {
	_deprecated_function( __FUNCTION__, '2.8.0', 'the_author_meta('email')' );
	the_author_meta('email');
}