What’s the most secure way to grant a user permission to update in a multisite?
The best way is to define a new role. An easy way to accomplish this is with the role scoper plugin. Otherwise you’ll just have to write that plugin yourself manually. Here is a basic example pulled from the Codex $result = add_role( ‘basic_contributor’, __( ‘Basic Contributor’ ), array( ‘read’ => true, // true allows … Read more