php 仪表板小部件#white

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 仪表板小部件#white相关的知识,希望对你有一定的参考价值。

// Remove unwanted dashboard items
add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');

function my_custom_dashboard_widgets() {
  global $wp_meta_boxes;
  
  //Wordpress Development Blog Feed
  unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
  
  //Other WordPress News Feed
  unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
  
  //Quick Press Form
  unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
  
  //Recent Drafts List
  unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']);
}

以上是关于php 仪表板小部件#white的主要内容,如果未能解决你的问题,请参考以下文章

php 仪表板欢迎小部件

PHP 删除仪表板小部件

php 从Wordpress仪表板中删除小部件

PHP 将小部件添加到wordpress管理仪表板

PHP 如何以编程方式删除WordPress仪表板小部件

php 在WordPress中添加全宽仪表板小部件