gpt4 book ai didi

wordpress - 如何自定义默认的 wordpress 编辑器?

转载 作者:行者123 更新时间:2023-12-04 14:04:38 25 4
gpt4 key购买 nike

很高兴听到索尼 (wordpress3.3) 有新的编辑器 API wp_editor()这使我们能够轻松地在自定义字段中使用编辑器的多个实例。

但是我需要自定义默认编辑器(用于主要内容)并且无法弄清楚如何使用此功能进行操作。
我需要为名为 baner 的新自定义帖子类型自定义编辑器,为此我需要使用更少的按钮更改编辑器的大小。我知道我可以通过简单地使用自定义字段来做到这一点,但出于某种原因,我想使用该内容来描述横幅。

先感谢您。

最佳答案

我一直在寻找将自定义元框放在默认编辑器上方的解决方案,我找到了我的旧问题的解决方案(如何使用 wp_editor 自定义默认编辑器)!

解决方案是首先取消设置默认编辑器。然后创建另一个元框来放置内容,然后使用 wp_editor 创建新的新实例,不是很简单吗?

add_action( 'add_meta_boxes', 'page_meta_boxes' );
public function page_meta_boxes()
{

global $_wp_post_type_features;
//ive defined my other metaboxes first with higher priority
add_meta_box(
$id = 'page_heading_meta_box',
$title = __('Heading'),
$callback = array(&$this,'render_page_heading_metabox'),
$post_type = 'page',
$context = 'normal',
$priority = 'core'
);
add_meta_box(
$id = 'page_description_meta_box',
$title = __('Description'),
$callback = array(&$this,'render_page_description_metabox'),
$post_type = 'page',
$context = 'normal',
$priority = 'core'
);
//check for the required post type page or post or <custom post type(here article)
if (isset($_wp_post_type_features['article']['editor']) && $_wp_post_type_features['post']['editor']) {
unset($_wp_post_type_features['article']['editor']);
add_meta_box(
'wsp_content',
__('Content'),
array(&$this,'content_editor_meta_box'),
'article', 'normal', 'core'
);
}
if (isset($_wp_post_type_features['page']['editor']) && $_wp_post_type_features['page']['editor']) {
unset($_wp_post_type_features['page']['editor']);
add_meta_box(
'wsp_content',
__('Content'),
array(&$this,'content_editor_meta_box'),
'page', 'normal', 'low'
);
}
}

通过这种方式,我们注册了一个名为 content 的新元框。现在是时候放置编辑器了
        function content_editor_meta_box($post)
{
$settings = array(
#media_buttons
#(boolean) (optional) Whether to display media insert/upload buttons
#Default: true
'media_buttons' => true,

#textarea_name
#(string) (optional) The name assigned to the generated textarea and passed parameter when the form is submitted. (may include [] to pass data as array)
#Default: $editor_id
'textarea_name'=>'content',

#textarea_rows
#(integer) (optional) The number of rows to display for the textarea
#Default: get_option('default_post_edit_rows', 10)

#tabindex
#(integer) (optional) The tabindex value used for the form field
#Default: None
'tabindex' => '4'

#editor_css
#(string) (optional) Additional CSS styling applied for both visual and HTML editors buttons, needs to #include <style> tags, can use "scoped"
#Default: None

#editor_class
#(string) (optional) Any extra CSS Classes to append to the Editor textarea
#Default:

#teeny
#(boolean) (optional) Whether to output the minimal editor configuration used in PressThis
#Default: false

#dfw
#(boolean) (optional) Whether to replace the default fullscreen editor with DFW (needs specific DOM elements #and css)
#Default: false

#tinymce
#(array) (optional) Load TinyMCE, can be used to pass settings directly to TinyMCE using an array()
#Default: true

#quicktags
#(array) (optional) Load Quicktags, can be used to pass settings directly to Quicktags using an array()
#Default: true
);
wp_editor($post->post_content,'content');

}

现在您可以完全自定义您的编辑器!这就是它现在的样子。希望它对你也有用!
enter image description here

关于wordpress - 如何自定义默认的 wordpress 编辑器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8815843/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com