我正在尝试将wp_editor集成到弹出窗口中。我用过这个功能
$content = '';
$editor_id ='content';
wp_editor( $content, $editor_id);
但是在提交时,我没有得到任何数据。 我还尝试在弹出的窗口中集成特色图像元框。我正在使用这个
add_meta_box('postimagediv', __('Featured Image'),'post_thumbnail_meta_box', $post_type, 'side', 'low');
但我没有得到任何元框。