给wordpress仪表盘添加自定义信息模块

2021年3月17日14:02:25 发表评论
广告也精彩

给wordpress仪表盘添加自定义信息模块

有的时候会想到在仪表盘上也加些教程链接和说明更加好,那么可以在WordPress 仪表板中添加一个自定义的模块,可以将下面代码添加到当前主题函数模板functions.php中:

  1. add_action('wp_dashboard_setup', 'my_custom_dashboard_widgets');
  2. function my_custom_dashboard_widgets() {
  3.     global $wp_meta_boxes;
  4.     wp_add_dashboard_widget('custom_help_widget', '自定义', 'custom_dashboard_help');
  5. }
  6. function custom_dashboard_help() {
  7.     echo '<p>自定义内容</p>';
  8. }

修改以上代码为自己的内容,再去仪表盘看看,是否多出了自定义的信息模块出现了!

如何去掉wordpress仪表盘中无用的模块?

同样还是在wordpress主题文件里的functions.php文件中加入以下代码:

  1. //删除仪表盘模块
  2. function example_remove_dashboard_widgets() {
  3.     // Globalize the metaboxes array, this holds all the widgets for wp-admin
  4.     global $wp_meta_boxes;
  5.     // 以下这一行代码将删除 "快速发布" 模块
  6.     unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
  7.     // 以下这一行代码将删除 "引入链接" 模块
  8.     unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
  9.     // 以下这一行代码将删除 "插件" 模块
  10.     unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
  11.     // 以下这一行代码将删除 "近期评论" 模块
  12.     unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
  13.     // 以下这一行代码将删除 "近期草稿" 模块
  14.     unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']);
  15.     // 以下这一行代码将删除 "WordPress 开发日志" 模块
  16.     unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
  17.     // 以下这一行代码将删除 "其它 WordPress 新闻" 模块
  18.     unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
  19.     // 以下这一行代码将删除 "概况" 模块
  20.     unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
  21. }
  22. add_action('wp_dashboard_setup', 'example_remove_dashboard_widgets' );
  23. // 以下这一行代码将删除 "welcome" 模块
  24. remove_action('welcome_panel', 'wp_welcome_panel');

根据以上注释去去掉自己所需要去掉的模块吧!
 

 



微信扫描下方的二维码阅读本文

小陈号卡
ts小陈

发表评论(不允许含有网址!)

:?: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :cry: :mrgreen: :neutral: :razz:

已登录用户不需要填写以下内容