LoginSignup
2
3

More than 3 years have passed since last update.

WordPress5.4でダッシュボードに追加されたサイトヘルスを非表示にする

Last updated at Posted at 2020-04-02

通知に気づかないふりをしていたけれどやっぱり現れたやつ。

sitehealth

ログイン直後に視認されてしまうので色々都合が悪い。
よって消す。

他のウィジェット同様に

functions.php
add_action('wp_dashboard_setup', function() {
    global $wp_meta_boxes;
    unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_site_health']);
});

見たいときは
ツール>サイトヘルス でも見れる。
ここも消したいときは

functions.php
add_action('admin_menu', function() {
    remove_submenu_page('tools.php', 'site-health.php');
});

管理側の諸々の非表示まとめ

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3