您现在的位置是:wordpre庄闲官网平台官方ssPC加拿大飞飞在线预测移除后台外观下的编辑和仪表盘的模块 >>正文
wordpre庄闲官网平台官方ssPC加拿大飞飞在线预测移除后台外观下的编辑和仪表盘的模块
谈言微中网434人已围观
简介有时候个人wordpress主题禁止用户在后台乱修改,可以通过模板函数functions.php等php文件添加以下代码移除wordpress后台外观下的主题编辑,快速草稿、wordpress后台外观...
有时候个人wordpress主题禁止用户在后台乱修改,可以通过模板函数functions.php等php文件添加以下代码移除wordpress后台外观下的主题编辑,快速草稿、
wordpress后台外观下的编辑不显示问题,
//移除后台外观-编辑,防止用户编辑导致错误function remove_submenu() {remove_submenu_page( 'themes.php', 'theme-editor.php' );}庄闲官网平台官方if ( is_admin() ) {add_action('admin_init','remove_submenu');}
wordpress后台主页仪表盘的模块:概览、PC加拿大飞飞在线预测防止用户编辑导致错误。WordPress活动及新闻、Welcome移除代码如下。代码如下(修改为你的域名)
//自定义后台左下角版权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');在你的wordp庄闲官网平台官方ress主题下fuPC加拿大飞飞在线预测nctions.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进行创作”。活动、
Tags:
相关文章
html5常用标签定义及使用说明
wordpre庄闲官网平台官方ssPC加拿大飞飞在线预测移除后台外观下的编辑和仪表盘的模块HTML5是下一代Web语言,它不再只是一种标记语言,它未下一代web提供了全新的框架和平台,包括提供免插件的音视频、图像动画、本体存储以及更多酷炫而且重要的功能,并使这些用用标准化,从而使web能够...
阅读更多
CSS文本样式text
wordpre庄闲官网平台官方ssPC加拿大飞飞在线预测移除后台外观下的编辑和仪表盘的模块HTML5中CSS文本样式,通过文本样式的设置,更改字体的大小、样式以及文本的方位。一、文本总汇下面了解一下 CSS 文本样式中文本内容的一些设置方法,样式表如下:text-decoration 装饰...
阅读更多
wordpress如何防止垃圾评论/回复
wordpre庄闲官网平台官方ssPC加拿大飞飞在线预测移除后台外观下的编辑和仪表盘的模块在使用wordpress的过程中,有时你会发现在后台的评论有好多待审的(如下图)。而且很多是无相关的英文评论和很长的网站超链接。这些多数用的是群发工具。有时候,如果一周没登录wordpress后台,当...
阅读更多