我使用 wordpress 主题。这个主题包含wp_editor
在编辑器面板上。我的代码是:
<?php
wp_editor('', lovephotoValue, $settings = array(
'quicktags'=>1,
'tinymce'=>1,
'media_buttons'=>0,
'textarea_rows'=>10,
'editor_class'=>"textareastyle"
));
?>
那么,如何以编程方式将图像添加到此编辑器,当用户打开此页面时,图像将在编辑器上...
谢谢!