get_the_author_msn

函数
get_the_author_msn ( No parameters )
返回值
  • (string) The author's MSN address.
相关
  • get_the_author_meta()
定义位置
相关方法
get_the_author_aimget_the_author_yimget_the_authorthe_author_msnget_the_author_link
引入
1.5.0
弃用
2.8.0

get_the_author_msn: 这个函数检索文章作者的MSN Messenger帐户名称。它不需要任何参数,并返回一个包含账户名称的字符串。

检索当前文章的作者的MSN地址。

function get_the_author_msn() {
	_deprecated_function( __FUNCTION__, '2.8.0', 'get_the_author_meta('msn')' );
	return get_the_author_meta('msn');
}

常见问题

FAQs
查看更多 >