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

2024年07月08日 建站教程

函数源码:

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 );

本文链接:http://so.lmcjl.com/news/8068/

展开阅读全文
相关内容