如何通过代码实现给 bbPress 前台编辑器增加添加媒体上传按钮

其实有两种方式可以实现,薇晓朵技术论坛用的是插件方式,便于用户使用。

代码的话如下:

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[fusion_builder_container hundred_percent="yes" overflow="visible"][fusion_builder_row][fusion_builder_column type="1_1" background_position="left top" background_color="" border_size="" border_color="" border_style="solid" spacing="yes" background_image="" background_repeat="no-repeat" padding="" margin_top="0px" margin_bottom="0px" class="" id="" animation_type="" animation_speed="0.3" animation_direction="left" hide_on_mobile="no" center_content="no" min_height="none"]['media_buttons'] = true;

	return $args;
}

添加到你的主题或者子主题的 function.php 文件里面。

插件的话请看这里:https://bbs.weixiaoduo.com/topic/16059

2015-12-27 13.47.13

2016-01-09 22:40:24  增加第三种方式,允许 bbPress 论坛用户上传图片;

使用插件实现,可以让用户自行上传图片。

这里下载: https://bbs.weixiaoduo.com/topic/17573

收录于薇晓朵技术论坛,原帖地址:https://bbs.weixiaoduo.com/topic/17273

文章没看懂?代码不会用?需要帮助您可以去论坛提问自助服务台

作者风间

在哪里跌倒,就在哪里趴着。