其實有兩種方式可以實現,薇曉朵技術論壇用的是外掛方式,便於使用者使用。
程式碼的話如下:
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