Support

Account

Home Forums Front-end Issues Front-End Media Upload Capabilities Issue Reply To: Front-End Media Upload Capabilities Issue

  • This still doesn’t for me. I changed the permission to like this:

    add_action('wp', 'allow_employer_uploads');
    function allow_employer_uploads() {
      $employer = get_role('employer');
      // author caps
      $employer->add_cap('edit_published_posts');
      $employer->add_cap('delete_posts');
      $employer->add_cap('edit_posts');
      $employer->add_cap('upload_files');
      // editor caps
      $employer->add_cap('edit_others_posts');
    }