您现在的位置是:wordpre庄闲官网平台官方ssPC加拿大飞飞在线预测移除后台外观下的编辑和仪表盘的模块 >>正文
wordpre庄闲官网平台官方ssPC加拿大飞飞在线预测移除后台外观下的编辑和仪表盘的模块
短兵相接网139人已围观
简介有时候个人wordpress主题禁止用户在后台乱修改,防止用户编辑导致错误function remove_submenu() {remove_submenu_page( 'themes.ph...
有时候个人wordpress主题禁止用户在后台乱修改,防止用户编辑导致错误function remove_submenu() {remove_submenu_page( 'themes.php', 'theme-editor.php' );}if ( is_admin() ) {add_action('admin_init','remove_submenu');}
wordpress后台主页仪表盘的模块:概览、移除后点击“仪表盘”不显示相关模块(变为空白)
//删除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移除代码庄闲官网平台官方如下。PC加拿大飞飞在线预测代码如下(修改为你的域名)
//自定义后台左下角版权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');在你的wordpress主题下functions.php文件添加。可以通过模板函数functions.php等php文件添加以下代码移除wordpress后台外观下的主题编辑,
wordpress后台外观下的编辑不显示问题,
//移除后台外观-编辑,快速草稿、活动、
Tags:
上一篇:CSS3渐变效果linear
下一篇:个人博客网站SEO优化20个技巧
相关文章
搜索引擎的工作原理(一)
wordpre庄闲官网平台官方ssPC加拿大飞飞在线预测移除后台外观下的编辑和仪表盘的模块什么是搜索引擎:搜索引擎是一个Web上的软件程序,它以一定的策略在Web上进行搜集和发现信息,在对信息进行处理和组织后,为用户提供Web信息查询服务。在国内主流的搜索引擎有百度、谷歌、搜搜、360搜索...
阅读更多
wordpress禁止加载图片属性srcset和sizes
wordpre庄闲官网平台官方ssPC加拿大飞飞在线预测移除后台外观下的编辑和仪表盘的模块最近把wordpress升级到4.4版本,在用鼠标右键点击审查元素看图片时,发现图片显示不同的尺寸(如下图)。如src="http://img.bokequ.com/wp-content/upload...
阅读更多
网站分类目录(图片)缩略图显示不正常问题
wordpre庄闲官网平台官方ssPC加拿大飞飞在线预测移除后台外观下的编辑和仪表盘的模块在网站(网址)分类目录提交网站的时候会发现很多的分类目录网站出现缩略图无法显示的现象,十分影响用户体验,缩略图无法显示多数是连接第三方网站截图服务的平台,由于对方网站无法打开所以图片无法显示,很多分类...
阅读更多