wordpress如何获取当前作者的各种属性

588 ℃

函数源码:

function get_the_author_meta( $field = '', $user_id = false ) {
  $original_user_id = $user_id;

  if ( ! $user_id ) {
    global $authordata;
    $user_id = isset( $authordata->ID ) ? $authordata->ID : 0;
  } else {
    $authordata = get_userdata( $user_id );
  }

  if ( in_array( $field, array( 'login', 'pass', 'nicename', 'email', 'url', 'registered', 'activation_key', 'status' ), true ) ) {
    $field = 'user_' . $field;
  }

  $value = isset( $authordata->$field ) ? $authordata->$field : '';

  return apply_filters( "get_the_author_{$field}", $value, $user_id, $original_user_id );
}

基本用法:

// 获取用户名
get_the_author_meta( 'nicename', $author_id );

// 获取email
get_the_author_meta( 'email', $author_id );

// 获取url
get_the_author_meta( 'url', $author_id );

// 获取状态
get_the_author_meta( 'status', $author_id );

WordPress如何判断当前文章是否是密码保护文章

WordPress版本如何使用str_starts_with和str_ends_with函数

WordPress如何显示当前文章的评论个数

wordpress如何显示下个评论链接

wordpress教程如何输出用于回复评论的隐藏输入html

标签: get_the_author_meta, wordpress函数

上面是“wordpress如何获取当前作者的各种属性”的全面内容,想了解更多关于 wordpress 内容,请继续关注web建站教程。

当前网址:https://m.ipkd.cn/webs_4406.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

帝国cms模板插件网站访问统计插件
dedecms在列表或首页显示tag标签带链接
es6语法如何将字符串转为数组
npm安装报错:提示源文本中存在无法识别的标记
支付宝小程序的开发组件中文文档官网介绍