管理目的ですべてのユーザーのリストを含むメニューページを作成する方法が必要です。このリストは、「ユーザー」メニューページへの許可または同意を得ていないユーザーによって使用されます。ページには、各ユーザーのユーザーID、名前、登録日、ニックネーム、ユーザーレベル、およびユーザーロールが必要です。
どのようにこれを達成するためのアイデアですか?参考文献やチュートリアルも大歓迎です。
プラグインとして私があなたにあげることができるのはこれだけです。
<?php
/*
Plugin Name: Users Table
Plugin URI: http://www.exe.ie
Description: A list of all available users with their ID, Name, Registration Date, Nickname, User Level and User Role
Version: 1.0
Author: Daniel Conde
Author URI: http://www.exe.ie
License: GPL
*/
add_action('admin_menu', 'my_user_table_menu');
function my_user_table_menu() {
add_menu_page('Users Table', 'Users Table', '0', 'users_table', 'users_table');
}
function users_table() {
global $wpdb; ?>
<div>
<h3>Users Table</h3>
<table class="wp-list-table widefat fixed users">
<thead>
<tr>
<th><b>User ID</b></th>
<th><b>Name</b></th>
<th><b>Registered</b></th>
<th><b>Nickname</b></th>
<th><b>User Level</b></th>
<th><b>User Role</b></th>
</tr>
</thead>
<tbody id="the-list" class="list:user"><?php
$wp_user_search = $wpdb->get_results("SELECT ID, display_name FROM $wpdb->users ORDER BY ID");
foreach ( $wp_user_search as $userid ) {
$user_id = (int) $userid->ID;
$user_info = get_userdata($user_id);
$formid = $user_info->formid;
$user = new WP_User( $user_id );
echo '<tr id="user-'.$user_id.'" class="alternate">';
echo '<th>' . $user_id . '</th>';
echo '<th>' . $user_info->display_name . '</th>';
echo '<th>' . $user_info->user_registered . '</th>';
echo '<th>' . $user_info->nickname . '</th>';
echo '<th>' . $user_info->user_level . '</th>';
echo '<th>'; if ( !empty( $user->roles ) && is_array( $user->roles ) ) { foreach ( $user->roles as $role ) echo $role; } echo '</th>';
echo '</tr>';
} ?>
</tbody>
<tfoot>
<tr>
<th><b>User ID</b></th>
<th><b>Name</b></th>
<th><b>Registered</b></th>
<th><b>Nickname</b></th>
<th><b>User Level</b></th>
<th><b>User Role</b></th>
</tr>
</tfoot>
</table>
</div><?php
} ?>
美しさではありませんが、それは仕事をします。
コピーしてusers-table.phpとして保存し、pluginsフォルダにアップロードして有効にします