Wordpress将wp_editor添加到custom_meta_box

时间:2015-07-25 01:21:43

标签: php wordpress wordpress-plugin meta-boxes wp-editor

可以请任何人帮忙吗?我创建了自定义元框,其中两个是textarea。 这就是我所拥有的:

array(
        'label'=> 'Ingredients',
        'desc'  => 'List of ingrediends',
        'id'    => $prefix.'ingrediends',
        'type'  => 'textarea'
    ),
        array(
        'label'=> 'Directions',
        'desc'  => 'Directions',
        'id'    => $prefix.'directions',
        'type'  => 'textarea'
    )

==========================

case 'textarea':
    echo '<textarea name="'.$field['id'].'" id="'.$field['id'].'" cols="60" rows="4">'.$meta.'</textarea>
        <br /><span class="description">'.$field['desc'].'</span>';
break; 

如何添加wp_editor?我试过了:

wp_editor( $content, 'recipe_directions', array( 'textarea_name' => 'recipe_directions', 'media_buttons' => false, 'tinymce' => array() ) );

但没有运气。谁能帮忙。 整个想法是使常规textarea像富文本编辑器

感谢您的帮助....任何人:)

1 个答案:

答案 0 :(得分:0)

比从来没有迟到.....

在你的类init函数中(假设它是一个插件类)add

add_meta_box(
    'ingredients_box_id',
    __( 'Ingredients', $this->textdomain ),
    array($this,'ingredients_box_content'),
    'ingredients_box',
    'advanced',
    'high'
);

然后添加函数以启用wp_Editor

function ingredients_box_content( $post )
{
    wp_editor( $meta_biography, 'ingredients_box_text_id', array(
        'wpautop'       => true,
        'media_buttons' => false,
        'textarea_name' => 'ingredients_box_text',
        'textarea_rows' => 10,
        'teeny'         => true
    ) );
}