当前位置:  开发笔记 > 编程语言 > 正文

从wordpress编辑页面屏幕中删除主编辑器

如何解决《从wordpress编辑页面屏幕中删除主编辑器》经验,为你挑选了2个好方法。

有人知道从页面编辑屏幕中删除主编辑器的方法吗?而不只是与CSS.我添加了一些带有tinymce的其他元框,它们与主要元素碰撞.

我有一个类从编辑屏幕中删除其他元框,但我不能这样摆脱主编辑器.我试图将'divpostrich'和'divpost'添加到类中的数组中(但没有运气):

class removeMetas{
    public function __construct(){
        add_action('do_meta_boxes', array($this, 'removeMetaBoxes'), 10, 3);
    }

    public function removeMetaBoxes($type, $context, $post){
        /**
         * usages
         * remove_meta_box($id, $page, $context)
         * add_meta_box($id, $title, $callback, $page, $context = 'advanced', $priority = 'default')
         */
        $boxes = array( 'slugdiv', 'postexcerpt', 'passworddiv', 'categorydiv',
                        'tagsdiv', 'trackbacksdiv', 'commentstatusdiv', 'commentsdiv',
                        'authordiv', 'postcustom');

        foreach ($boxes as $box){
            foreach (array('link', 'post', 'page') as $page){
                foreach (array('normal', 'advanced', 'side') as $context){
                    remove_meta_box($box, $type, $context);
                }
            }
        }
    }
}

$removeMetas = new removeMetas();

我也尝试用jquery删除'divpostrich'.但是无法弄清楚将js放在哪里工作.当我用firebug删除浏览器中的'postdivrich'时 - 我剩下的tinymce字段工作得很完美.

有任何想法吗?



1> Evan..:

WP内置了WP支持,因此您不必直接使用全局变量并确保前向兼容性,如果它们更改了功能的处理方式.WP核心代码与@ user622018答案的逻辑完全相同

function remove_editor() {
  remove_post_type_support('page', 'editor');
}
add_action('admin_init', 'remove_editor');


注意:要有选择地执行此操作,对于特定页面,您需要稍后挂钩.`admin_init`不提供全局`$ post`对象.我使用`admin_head`来禁用主页的编辑器.

2> 小智..:

您正在寻找的是全局$_wp_post_type_features阵列.

以下是如何使用它的快速示例

function reset_editor()
{
     global $_wp_post_type_features;

     $post_type="page";
     $feature = "editor";
     if ( !isset($_wp_post_type_features[$post_type]) )
     {

     }
     elseif ( isset($_wp_post_type_features[$post_type][$feature]) )
     unset($_wp_post_type_features[$post_type][$feature]);
}

add_action("init","reset_editor");


为什么`if(!isset($ _ wp_post_type_features [$ post_type])`行?它没有做任何事情,下一行正在检查,只有在关联数组包含所需的键时才会取消设置.
推荐阅读
家具销售_903
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有