您现在的位置是:wordpress壹号娱乐移除后台外观下的编辑和仪表盘的模块巅峰国际下载app >>正文
wordpress壹号娱乐移除后台外观下的编辑和仪表盘的模块巅峰国际下载app
正正之旗网7678人已围观
简介在你的wordpress主题下functions.php文件添加。活动、移除后点击“仪表盘”不显示相关模块(变为空白)//删除wordpress后台仪表盘模块function example_remo...
在你的wordpress主题下functions.php文件添加。活动、移除后点击“仪表盘”不显示相关模块(变为空白)
//删除wordpress后台仪表盘模块function example_remove_dashboard_widgets() {// Globalize the metaboxes array, this holds all the widgets for wp-adminglobal $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' );remove_action('welcome_panel', 'wp_welcome_panel');function remove_dashboard_meta() {remove_meta_box( 'dashboard_activity', 'dashboard', 'normal');//3.8版开始}add_action( 'admin_init', 'remove_dashboard_meta' );
如何修改(隐藏)wordpress后台左下角的“感谢使用wordpress进行创作”。
wordpress后台外观下的编辑不显示问题,Welcome移除代码如下。有时候个人wo壹号娱乐rdpress主题禁止用户在后台乱修改,巅峰国际下载appWordPress活动及新闻、
//移除后台外观-编辑,快速草稿、代码如下(修改为你的域名)//自定义后台左下角版权function remove_footer_admin () {echo '感谢使用 <a href="http://www.bokequ.com/category/theme" target="_blank">wordpress主题</a></p>';}add_filter('admin_footer_text', 'remove_footer_admin');防止用巅峰国际下载app壹号娱乐户编辑导致错误。防止用户编辑导致错误function remove_submenu() {remove_submenu_page( 'themes.php', 'theme-editor.php' );}if ( is_admin() ) {add_action('admin_init','remove_submenu');}
wordpress后台主页仪表盘的模块:概览、可以通过模板函数functions.php等php文件添加以下代码移除wordpress后台外观下的主题编辑,
Tags:
相关文章
Crypto Markets Lost Over $400B as Bitcoin (BTC) Slumped by $10K in 2 Days (Weekend Watch)
wordpress壹号娱乐移除后台外观下的编辑和仪表盘的模块巅峰国际下载appIn yet another eventful and painful evening trading on Saturday, Bitcoin’s price tumbled by an...
阅读更多
WordPress图片主题Lovephoto2.0.2分享
wordpress壹号娱乐移除后台外观下的编辑和仪表盘的模块巅峰国际下载appLovephoto主题是一款主打图片为主的图片分享模版,加入了许多过去从未尝试的元素,整个主题在资源加载上了采取了用则取、不用不取的原则,将原有的style.css以及大量js拆开成数个小片段,采用了...
阅读更多
wordpress博客纯代码去掉分类目录Category
wordpress壹号娱乐移除后台外观下的编辑和仪表盘的模块巅峰国际下载app如何免插件实现WordPress网站去掉分类链接中category目录?折腾WordPress的朋友都知道在分类链接中会出现一个/category/目录,网上也出现了各种去除category目录的类似...
阅读更多