久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      如何刪除WordPress站點(diǎn)健康狀態(tài)面板和菜單項(xiàng)

      下面由WordPress教程欄目給大家介紹刪除WordPress站點(diǎn)健康狀態(tài)面板和菜單項(xiàng)的方法,希望對(duì)需要的朋友有所幫助!

      如何刪除WordPress站點(diǎn)健康狀態(tài)面板和菜單項(xiàng)

      刪除 WordPress 站點(diǎn)健康狀態(tài)面板和菜單項(xiàng)

      WordPress站點(diǎn)健康功能始于 5.2 版,如不想顯示這玩意,可以使用本文的方法刪除 WordPress 站點(diǎn)健康狀態(tài)面板和菜單項(xiàng),將下面代碼添加到當(dāng)前主題函數(shù)模板functions.php中:

      刪除站點(diǎn)健康狀態(tài)面板:

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

      刪除站點(diǎn)健康菜單項(xiàng):

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

      禁用站點(diǎn)健康電子郵件通知:

      add_filter( 'wp_fatal_error_handler_enabled', '__return_false' );

      或者將下面的代碼添加到配置文件wp-config.php中:

      define( 'WP_DISABLE_FATAL_ERROR_HANDLING', true );

      上述方法并不能禁止站點(diǎn)健康功能在后臺(tái)偷偷運(yùn)行

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)