管理画面で現在のユーザーの情報だけを表示する

functions.php に以下のコードを追加します。
[php]
function custom_pre_get_posts ( $query ) {

if ( is_admin() ) {

$current_user = wp_get_current_user();
$query -> set( ‘author’, $current_user->ID );

}

}
add_action( ‘pre_get_posts’, ‘custom_pre_get_posts’ );
[/php]