在 users.php 中显示元数据 - wordpress
Show metadata in users.php - wordpress
有没有办法在所有注册用户列表中显示元数据“users.php”
在 user.php
中添加自定义列
function new_modify_user_table( $column ) {
$column['custom_metadata'] = 'Custom Mtadata';
return $column;
}
add_filter( 'manage_users_columns', 'new_modify_user_table' );
function new_modify_user_table_row( $val, $column_name, $user_id ) {
switch ($column_name) {
case 'custom_metadata' :
$first_name = get_the_author_meta( 'first_name', $user_id );
return $first_name;
break;
default:
}
return $val;
}
add_filter( 'manage_users_custom_column', 'new_modify_user_table_row', 10, 3 );
有没有办法在所有注册用户列表中显示元数据“users.php”
在 user.php
中添加自定义列function new_modify_user_table( $column ) {
$column['custom_metadata'] = 'Custom Mtadata';
return $column;
}
add_filter( 'manage_users_columns', 'new_modify_user_table' );
function new_modify_user_table_row( $val, $column_name, $user_id ) {
switch ($column_name) {
case 'custom_metadata' :
$first_name = get_the_author_meta( 'first_name', $user_id );
return $first_name;
break;
default:
}
return $val;
}
add_filter( 'manage_users_custom_column', 'new_modify_user_table_row', 10, 3 );