0

我使用 wordpress 主题。这个主题包含wp_editor在编辑器面板上。我的代码是:

<?php 
    wp_editor('', lovephotoValue, $settings = array(
       'quicktags'=>1,
       'tinymce'=>1,
       'media_buttons'=>0,
       'textarea_rows'=>10, 
       'editor_class'=>"textareastyle"
    )); 
?>

那么,如何以编程方式将图像添加到此编辑器,当用户打开此页面时,图像将在编辑器上...

谢谢!

4

1 回答 1

0

如果您想使用内置的 wordpress 媒体上传器,只需将 media_buttons 的值更改为 true:

wp_editor('', lovephotoValue, $settings = array(
   'quicktags'=>1,
   'tinymce'=>1,
   'media_buttons'=>true,
   'textarea_rows'=>10, 
   'editor_class'=>"textareastyle"
)); 
于 2016-12-06T10:09:13.250 回答