bbpress前台免插件实现上传图片

首页 论坛 分类论坛 BlogWall优化笔记 bbpress前台免插件实现上传图片

正在查看 0 条回复
  • 作者
    帖子
    • #393
      管理员
      管理员

      在function.php中添加以下代码即可。

      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;
      }

正在查看 0 条回复
  • 哎呀,回复话题必需登录。