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

544 ℃

函数源码:

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,我们会在看到邮件的第一时间内为您处理!

Vue Cropper文档官网介绍
百度echarts地图鼠标点击事件(移入/移出事件)
el-dialog定义了一个参数实现弹窗可拖动
MVBOX虚拟视频音乐播放器
MySQL语法自动提交与手动提交的基本语法示例