我用自定义textarea字段替换了我的WordPress TinyMCE编辑器。保存帖子时一切正常,但每当我想编辑帖子时,textarea字段都会变成空白。
我只想询问是否有任何钩子我必须调用才能在textarea字段中显示帖子进行编辑。
如果有任何钩子,请指导我。
修改
以下是我用来添加自己文本区域的代码:
/* Remove tinymce editor */
function wpdocs_remove_post_type_support() {
remove_post_type_support( 'post', 'editor' );
}
add_action('init' ,'wpdocs_remove_post_type_support' );
/* Add my own textarea */
function myprefix_edit_form_advanced() {
require('texteditor.html');
}
add_action( 'edit_form_after_title', 'myprefix_edit_form_advanced' );