0%

wordpress获取作者信息函数the_author_meta()

用法:




参数说明: 1、$field(字符串)将要显示的用户信息的字段名称(这些在数据库中都可以找到)。以下是常用的: user_login(用户登录名) user_pass(用户登录密码) user_nicename(用户昵称) user_email(用户邮箱地址) user_url(用户网站地址) user_registered(用户注册时间) user_status(用户状态) display_name(作者显示的名称) nickname(作者昵称) first_name(作者名字) last_name(作者姓氏) description(作者描述) user_level(用户等级) user_firstname(用户名字) user_lastname(用户姓氏) user_description(用户描述) 2、ID(用户ID值) 实例:


//获取作者的邮箱地址

//获取作者的昵称

提醒:如果该函数在文章主循环(Loop)中,则不必指定作者的ID值,标签所显示的就是当前文章作者的内容。如果在主循环(Loop)外,则需要指定用户ID值。如果需要获取用户信息但是不想显示出来(比如用在php方法中),请使用get_the_author_meta()方法。

转自:http://www.boke8.net/wordpress-the_author_meta.html