程式碼實現給 bbPress 前臺編輯器增加新增媒體上傳按鈕

標籤: 

正在檢視 3 個帖子:1-3 (共 3 個帖子)
  • 作者
    帖子
  • 詩語
    管理員
    • 文章數量: 5,932
    @feibisi
    樓主

    其實有兩種方式可以實現,薇曉朵技術論壇用的是外掛方式,便於使用者使用。

    程式碼的話如下:

    
    add_filter( 'bbp_after_get_the_content_parse_args', 'bavotasan_bbpress_upload_media' );
    /**
     * Allow upload media in bbPress
     *
     * This function is attached to the 'bbp_after_get_the_content_parse_args' filter hook.
     */
    function bavotasan_bbpress_upload_media( $args ) {
    	$args['media_buttons'] = true;
    
    	return $args;
    }

    新增到你的主題或者子主題的 function.php 檔案裡面。

    外掛的話請看這裡:https://bbs.weixiaoduo.com/topic/16059

    詩語
    管理員
    • 文章數量: 5,932
    @feibisi
    樓主

    補一張截圖:

    2015-12-27 13.47.13

    詩語
    管理員
    • 文章數量: 5,932
    @feibisi
    樓主

    2016-01-09 22:40:24  增加第三種方式,允許 bbPress 論壇使用者上傳圖片;

    使用外掛實現,可以讓使用者自行上傳圖片。

    這裡下載: https://bbs.weixiaoduo.com/topic/17573

正在檢視 3 個帖子:1-3 (共 3 個帖子)
  • 哎呀,回覆話題必需登入。

話題資訊

  • 當前位於:bbPress
  • 2 條回覆
  • 1 個參與人
  • 最後回覆:<a href="https://bbs.weixiaoduo.com/users/feibisi/" title=" 檢視詩語的個人資料" class="bbp-author-link"><span class="bbp-author-name"> 詩語</span></a>
  • 上次活動:<a href="https://bbs.weixiaoduo.com/topic/17273/#post-17574" title=" 回覆至:程式碼實現給 bbPress 前臺編輯器增加新增媒體上傳按鈕">9 年、 2 月前</a>