我正在为我的自定义帖子类型创建一个元框。有多个字段我想使用所见即所得编辑器而不是<textarea>
. 是否可以将多个编辑器添加到元框?
我将衷心感谢您的帮助!
非常感谢。大沙
我正在为我的自定义帖子类型创建一个元框。有多个字段我想使用所见即所得编辑器而不是<textarea>
. 是否可以将多个编辑器添加到元框?
我将衷心感谢您的帮助!
非常感谢。大沙
这是完整的代码示例:
add_action( 'add_meta_boxes', function() {
add_meta_box('html_myid_61_section', 'TITLEEEEE', 'my_output_function');
});
function my_output_function( $post ) {
$text= get_post_meta($post, 'SMTH_METANAME' , true );
wp_editor( htmlspecialchars($text), 'mettaabox_ID', $settings = array('textarea_name'=>'MyInputNAME') );
}
add_action( 'save_post', function($post_id) {
if (!empty($_POST['MyInputNAME'])) {
$datta=sanitize_text_field($_POST['MyInputNAME']);
update_post_meta($post_id, 'SMTH_METANAME', $datta );
}
});
忘记添加自定义代码,使用高级自定义字段,它非常棒,可以简化您的生活。
http://codex.wordpress.org/Function_Reference/wp_editor是迄今为止我发现的最简单的方法,自 3.3 以来内置于 Wordpress(所以升级 ;-))
但是您需要用 nl2br() 函数替换演示文稿,因为自定义模板中的 textarea 存在工具 JS 问题,这会删除所有您的<P>
和<br/>
标签,因此会删除所有换行符。
// for custom post type
function wo_second_editor($post) {
echo "<h3>Write here your text for the blue box on the right:</h3>";
$content = get_post_meta($post->ID, 'wo_blue_box' , true ) ;
wp_editor( htmlspecialchars_decode($content), 'wo_blue_box', array("media_buttons" => false) );
}
add_action('edit_form_advanced', 'wo_second_editor');
function wo_save_postdata($post_id, $post, $update) {
//...
if (!empty($_POST['wo_blue_box'])) {
$data=htmlspecialchars($_POST['wo_blue_box']);
update_post_meta($post_id, 'wo_blue_box', $data );
}
}
add_action('save_post', 'wo_save_postdata');
// Theme:
<div class="blue">
<?php
$content = get_post_meta(get_the_ID(), 'wo_blue_box' , true );
$content = htmlspecialchars_decode($content);
$content = wpautop( $content );
echo $content;
?>
</div>
您可以使用 metabox 中的 wordpress 默认文本编辑器
add_action( 'edit_page_form', 'my_second_editor' );
function my_second_editor() {
// get and set $content somehow...
wp_editor( $content, 'mysecondeditor' );
}
这对我有用:
http://www.farinspace.com/multiple-wordpress-wysiwyg-visual-editors/
它基本上是用一个 id 创建你的 textarea,然后从 js 调用:
tinyMCE.execCommand('mceAddControl', false, 'your_textarea_id');
希望能帮助到你!
首先安装 TinyMCE Advanced 插件。其次像这样将“theEditor”类添加到您的文本区域
<textarea class="theEditor" name="custom_meta_box"></textarea>
而已 ;)
纳比尔