我很難在wordpress定製程序中使小小的mce編輯器工作。在定製程序中排隊tinymce編輯器
它看起來像從我的WP_Customize_Control擴展中調用「wp_editor」不會觸發加載定製程序中的TinyMCE腳本。
我試圖加載它們手動像這個答案在這裏:https://wordpress.stackexchange.com/questions/175307/tinymce-is-not-defined-when-not-using-wp-editor
,並試圖與wp_enqueue_script('tiny-mce')
,但無濟於事。
這裏是我的渲染方法,沒有什麼特別的:
public function render_content() {
?>
<label>
<span class="customize-control-title"><?php echo esc_html($this->label); ?></span>
<?php
$settings = array(
'media_buttons' => false,
'quicktags' => false,
'teeny' => true
);
wp_editor($this->value(), $this->id, $settings);
?>
</label>
<?php
}
如何應該這樣做的權利有什麼建議?
發現這個,它看起來像它可能是因爲定製器中的手風琴正在移動:https://core.trac.wordpress.org/ticket/19173 –