其实有两种方式可以实现,薇晓朵技术论坛用的是插件方式,便于用户使用。
代码的话如下:
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