How can I restrict the categories users can post in, based on user roles?

admin2025-06-05  2

So far I've only found plugins that are either obsolete or only affect which categories are displayed.

EDIT: The result should be that users can only select certain categories when they publish their post.

So far I've only found plugins that are either obsolete or only affect which categories are displayed.

EDIT: The result should be that users can only select certain categories when they publish their post.

Share Improve this question edited Dec 15, 2018 at 19:29 Malory asked Dec 15, 2018 at 18:54 MaloryMalory 11 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 0

Try using these codes:

function themename_check_user_role( $role, $user_id = null ) {

    if ( is_numeric( $user_id ) )
    $user = get_userdata( $user_id );
    else
        $user = wp_get_current_user();

    if ( empty( $user ) )
    return false;

    return in_array( $role, (array) $user->roles );
}

// example use for the current user
if ( themename_check_user_role( 'customer' )
    _e( "You've got access!", 'themename' );
else
    _e( "Sorry, you don't have access!", 'themename' );

Here, you are checking whether a particular user has a role or not. If a match is found, true will be returned.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749095625a316325.html

最新回复(0)