我试图在一个模式页面和一个不同的php文件中添加Worpdpress编辑器,但它没有显示按钮,我将屏幕截图
同样在php文件中,首先我隐藏了编辑器以加载脚本。
<?php
do_action( \'admin_print_footer_scripts\' );
?>
<?php
echo \'<!--\';
wp_editor( \'\', \'customEditor\', array(
\'media_buttons\' => false,
\'textarea_rows\' => 10,
\'teeny\' => true
));
echo \'-->\';
然后在模式窗口中,我通过ajax调用编辑器:
wp_editor(\' \', \'customEditor\',$settings);
\\_WP_Editors::enqueue_scripts();
\\_WP_Editors::editor_js();
编辑:问题是它不会在控制台中显示任何错误。