美文网首页
代码实现给 bbPress 前台编辑器增加添加媒体上传按钮

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

作者: malingxin | 来源:发表于2017-06-28 10:35 被阅读0次
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 文件里面。

捕获.PNG

相关文章

网友评论

      本文标题:代码实现给 bbPress 前台编辑器增加添加媒体上传按钮

      本文链接:https://www.haomeiwen.com/subject/tetucxtx.html