如何为自定义帖子类型帖子创建多个编辑器?

时间:2017-05-10 09:08:29

标签: wordpress plugins custom-post-type

我想为自定义帖子类型packages帖子创建多个编辑器。这是为期3天的套餐,我想为每天添加说明,如第1天,第2天和第3天。对于5天的套餐,应该有5位编辑。

1 个答案:

答案 0 :(得分:2)

您好,您必须创建多个元框作为编辑器。尝试下面的代码,并将此代码放在您的functions.php文件中,它将在您的自定义后期类型中创建另一个带有wp_editor的文本区域,并记住一件事只需更改自定义后置类型的自定义后置类型下面的代码。

add_action("admin_init", "subdescription");
add_action('save_post', 'save_subdescription');
function subdescription(){
add_meta_box("sub_description", "Sub Description", "meta_function", "custom-post-type");
}
function meta_function(){
global $post;
$custom = get_post_custom($post->ID);
$sub_description = $custom["sub_description"][0];
wp_editor( $sub_description, 'subdescription', $settings =
array('textarea_name'=>'sub_description','dfw'=>true) );
}
function save_subdescription(){
global $post;
update_post_meta($post->ID, "sub_description", $_POST["sub_description"]);
}

希望它会对你有所帮助:)。