以下代码应该适合您。只要确保textarea
id都是小写字母数字。
$post = get_post( $post_id, \'OBJECT\' );
$args = array(
\'wpautop\' => true,
\'media_buttons\' => true,
\'editor_class\' => \'frontend\',
\'textarea_rows\' => 5,
\'tabindex\' => 1
);
wp_editor( esc_html( $post->post_content ), \'textareaid2\', $args );
您可以阅读
wp_editor
中的函数
this Codex page.