php 将用户ID列添加到WordPress用户表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将用户ID列添加到WordPress用户表相关的知识,希望对你有一定的参考价值。
/*
copy the following code to you current theme functions.php file:
*/
/*
* Adding the column
*/
function rd_user_id_column( $columns ) {
$columns['user_id'] = 'ID';
return $columns;
}
add_filter('manage_users_columns', 'rd_user_id_column');
/*
* Column content
*/
function rd_user_id_column_content($value, $column_name, $user_id) {
if ( 'user_id' == $column_name )
return $user_id;
return $value;
}
add_action('manage_users_custom_column', 'rd_user_id_column_content', 10, 3);
/*
* Column style (you can skip this if you want)
*/
function rd_user_id_column_style(){
echo '<style>.column-user_id{width: 5%}</style>';
}
add_action('admin_head-users.php', 'rd_user_id_column_style');
以上是关于php 将用户ID列添加到WordPress用户表的主要内容,如果未能解决你的问题,请参考以下文章