wordpress WordPress管理者以外でログインした場合、ダッシュボードのメインコンテンツ(.wrap)を非表示にする 最終更新日: 2026年3月14日
これも通常不要。
WPをアプリ利用した際のユーザーによる不要な操作を防止するには必要な程度。
//======================================================================================// 管理者以外でログインした場合、ダッシュボードのメインコンテンツ(.wrap)を非表示にする//======================================================================================add_action('admin_head', function () { // 管理者ではない、かつ現在の画面がダッシュボード(index.php)の場合 if (!current_user_can('administrator')) { $screen = get_current_screen(); if ($screen->id === 'dashboard') { echo '<style> #wpbody-content .wrap { display: none !important; } </style>'; } }});