我们在做wordpress主题开发的时候,为了更加的让使用者熟悉自己做的wordpress主题,都会在主题后台做详细的描述,有的时候会想到在仪表盘上也加些教程链接和说明更加好,那么今天就教大家如何给wordpress仪表盘添加自定义信息模块,下面就直接说教程了,打开你们wordpress主题的functions.php文件,将一下代码加入:
- function custom_dashboard_help() {
- echo '这里填使用说明的内容,可填写HTML代码';
- }
- function example_add_dashboard_widgets() {
- wp_add_dashboard_widget('custom_help_widget', '这里替换成面板标题', 'custom_dashboard_help');
- }
- add_action('wp_dashboard_setup', 'example_add_dashboard_widgets' );
修改以上代码为自己的内容,再去仪表盘看看,是否多出了自定义的信息模块出现了!
另外同时教程也给出,如何去掉wordpress仪表盘中无用的其他模块吧,同样还是在wordpress主题文件里的functions.php文件中加入以下代码:
- //删除仪表盘模块
- function example_remove_dashboard_widgets() {
- // Globalize the metaboxes array, this holds all the widgets for wp-admin
- global $wp_meta_boxes;
- // 以下这一行代码将删除 "快速发布" 模块
- unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_quick_press']);
- // 以下这一行代码将删除 "引入链接" 模块
- unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_incoming_links']);
- // 以下这一行代码将删除 "插件" 模块
- unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_plugins']);
- // 以下这一行代码将删除 "近期评论" 模块
- unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']);
- // 以下这一行代码将删除 "近期草稿" 模块
- unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_recent_drafts']);
- // 以下这一行代码将删除 "WordPress 开发日志" 模块
- unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_primary']);
- // 以下这一行代码将删除 "其它 WordPress 新闻" 模块
- unset($wp_meta_boxes['dashboard']['side']['core']['dashboard_secondary']);
- // 以下这一行代码将删除 "概况" 模块
- unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']);
- }
- add_action('wp_dashboard_setup', 'example_remove_dashboard_widgets' );
- // 以下这一行代码将删除 "welcome" 模块
- remove_action('welcome_panel', 'wp_welcome_panel');
根据以上注释去去掉自己所需要去掉的模块吧!