Home / Allow Contributors to Upload Images
Duplicate Snippet

Embed Snippet on Your Site

Allow Contributors to Upload Images

Allow users with the Contributor role to upload files in the admin.

30+
Code Preview
php
<?php
add_filter( 'user_has_cap', function ( $allcaps, $caps, $args, $user ) {
	if ( in_array( 'contributor', $user->roles ) && empty( $caps['upload_files'] ) ) {
		$allcaps['upload_files'] = true;
	}
	return $allcaps;
}, 10, 4 );

Comments

Add a Comment