Ticket #20285: 20285.2.diff
File 20285.2.diff, 1.4 KB (added by , 13 years ago) |
---|
-
wp-includes/author-template.php
96 96 * @param int $user_id Optional. User ID. 97 97 * @return string The author's field from the current author's DB object. 98 98 */ 99 function get_the_author_meta( $field = '', $user_id = false) {100 if ( ! $user_id ) 99 function get_the_author_meta( $field = '', $user_id = false ) { 100 if ( ! $user_id ) { 101 101 global $authordata; 102 else 102 $user_id = $authordata->ID; 103 } else { 103 104 $authordata = get_userdata( $user_id ); 105 } 104 106 105 // Keys used as object vars cannot have dashes. 106 $field = str_replace('-', '', $field); 107 $field = strtolower($field); 108 $user_field = "user_$field"; 107 if ( in_array( $field, array( 'login', 'pass', 'nicename', 'email', 'url', 'registered', 'activation_key', 'status' ) ) ) 108 $field = 'user_' . $field; 109 109 110 if ( 'id' == $field ) 111 $value = isset($authordata->ID) ? (int)$authordata->ID : 0; 112 elseif ( isset($authordata->$user_field) ) 113 $value = $authordata->$user_field; 114 else 115 $value = isset($authordata->$field) ? $authordata->$field : ''; 110 $value = isset( $authordata->$field ) ? $authordata->$field : ''; 116 111 117 return apply_filters( 'get_the_author_' . $field, $value, $user_id);112 return apply_filters( 'get_the_author_' . $field, $value, $user_id ); 118 113 } 119 114 120 115 /**