2016-09-27 73 views
0

我使用wordpress主題。該主題在編輯器面板上包含wp_editor。我的代碼是:如何在Wordpress編輯器中使用php添加圖片?

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

那麼,如何可以以編程方式添加一個圖像到這個編輯器,當用戶打開這個頁面,則圖像將在編輯器...

謝謝!

回答

0

如果你想使用內置的WordPress的媒體上傳media_buttons的價值只是更改爲true:

wp_editor('', lovephotoValue, $settings = array(
    'quicktags'=>1, 
    'tinymce'=>1, 
    'media_buttons'=>true, 
    'textarea_rows'=>10, 
    'editor_class'=>"textareastyle" 
)); 
相關問題