删除所有Wordpress仪表板小部件3.0+
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除所有Wordpress仪表板小部件3.0+相关的知识,希望对你有一定的参考价值。
For those of use who use Wordpress as a CMS, this gives you the option of hiding all your dashboard widgets, for all users.**Open your theme’s functions.php file located in your theme’s folder. Copy this script, paste it at the bottom of your theme’s function.php file and save it. Go to the dashboard page and everything is gone.
function remove_dashboard_widgets() { global $wp_meta_boxes; // For right now information widget // For recent comments listing widget // For quick press widget // For recent drafts widget // For Plugin information widget // For incoming links information widget // For WordPress blog news widget // For other WordPress news widget } add_action('wp_dashboard_setup', 'remove_dashboard_widgets' );
以上是关于删除所有Wordpress仪表板小部件3.0+的主要内容,如果未能解决你的问题,请参考以下文章
php 在管理仪表板页面上删除不必要的WordPress小部件