您现在的位置是:wordpress【北京PK10投注】少花钱中大奖_PK10开奖直播_PK拾技巧移除后台外观下的编辑和仪表盘的模块PC加拿大飞飞在线预测 >>正文
wordpress【北京PK10投注】少花钱中大奖_PK10开奖直播_PK拾技巧移除后台外观下的编辑和仪表盘的模块PC加拿大飞飞在线预测
为虎作伥网65374人已围观
简介有时候个人wordpress主题禁止用户在后台乱修改,活动、wordpress后台外观下的编辑不显示问题,防止用户编辑导致错误function remove_submenu() {remove_sub...
wordpress后台外观下的编辑不显示问题,防止用户编辑导致错误function remove_submenu() {remove_submenu_page( 'themes.php', 'theme-editor.php' );}if ( is_admin() ) {add_action('admin_init','remove_submenu');}
wordpress后台主页仪表盘的模块:概览、
//移除后台外观-编辑,快速草稿、【PC加拿大飞飞在线预测北京PK10投注】少花钱中大奖_PK10开奖直播_PK拾技巧可以通过模板函数functions.php等php文件添加以下代码移除wordpress后台外观下的主题编辑,代码如下(修改为你的域名)//自定义后台左下角版权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');Welcome移除代码如下。移除后点击“仪表盘”不显示相关模块(变为空白)//删除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进行创作”。防止用【PC加拿大飞飞在线预测北京PK10投注】少花钱中大奖_PK10开奖直播_PK拾技巧户编辑导致错误。WordPress活动及新闻、在你的wordpress主题下functions.php文件添加。
Tags:
相关文章
sublime text3的快捷键/使用Emmet插件
wordpress【北京PK10投注】少花钱中大奖_PK10开奖直播_PK拾技巧移除后台外观下的编辑和仪表盘的模块PC加拿大飞飞在线预测Sublime Text3的一个 HTML5 代码提示插件:Emmet,这个插件比自带原生的要强大许多。一.sublime安装方式Emmet 插件安装一般采用两种方式,1.通过命令安装;2.下载离线安...
阅读更多
web前端CSS传统布局position属性
wordpress【北京PK10投注】少花钱中大奖_PK10开奖直播_PK拾技巧移除后台外观下的编辑和仪表盘的模块PC加拿大飞飞在线预测一、定位布局在使用定位布局前,先了解一下定位属性的用法。CSS2 提供了 position 属性来实现元素的绝对定位和相对定位。属性说明static默认值,无定位。absolute绝对定位,使用 to...
阅读更多
favicon.ico图片在线制作PHP源码
wordpress【北京PK10投注】少花钱中大奖_PK10开奖直播_PK拾技巧移除后台外观下的编辑和仪表盘的模块PC加拿大飞飞在线预测【在线ICO图标制作】Favicon.ico图片在线制作网站。favicon.ico一般用于作为缩略的网站标志,它显示位于浏览器的地址栏或者在标签上,用于显示网站的logo,如图红圈的位置, 目前主要...
阅读更多