Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Creating and editing new roles in WordPress

WordPress comes with a built-in user management system that allows website owners to create and manage different user roles with varying levels of permissions. However, sometimes the default roles may not be enough to fit your needs. In such cases, you may want to create custom roles that have specific permissions and capabilities. In this article, we’ll discuss how to create new roles in WordPress using functions.php and include code snippets to help you get started.

Step 1: Define the New User Role

To create a new user role, you need to define it using the add_role() function. The function takes three parameters: the role name, the display name, and an array of capabilities.

The role name should be a unique identifier for your new role. The display name is what will be displayed in the WordPress dashboard. The capabilities array should list the different capabilities that users with this role should have. For example, you might want to give users with this role the ability to publish posts but not delete them.

Here’s an example code snippet that defines a new user role called “custom_role” with the display name “Custom Role” and the capability to publish posts:

function create_custom_role() {    add_role( 'custom_role', 'Custom Role', array(
        'publish_posts' => true,
    ) );
}
add_action( 'init', 'create_custom_role' );

Step 2: Assign Capabilities to the New User Role

Once you have defined the new user role, you need to assign capabilities to it. WordPress has a set of predefined capabilities that you can use, such as “publish_posts” or “edit_pages”. You can also create custom capabilities using the add_cap() function.

Here’s an example code snippet that adds the capability to edit pages to our custom role:

function add_custom_role_caps() {
    $role = get_role( 'custom_role' );
    $role->add_cap( 'edit_pages' );
}
add_action( 'init', 'add_custom_role_caps' );

Step 3: Remove Capabilities from the New User Role

You can also remove capabilities from the new user role if needed. This can be done using the remove_cap() function.

Here’s an example code snippet that removes the capability to publish posts from our custom role:

function remove_custom_role_caps() {
    $role = get_role( 'custom_role' );
    $role->remove_cap( 'publish_posts' );
}
add_action( 'init', 'remove_custom_role_caps' );

Creating new roles in WordPress can be a powerful tool for website owners to manage their user permissions and capabilities. Using the add_role() function, you can define new user roles with specific capabilities, and then assign or remove capabilities as needed using the add_cap() and remove_cap() functions. By including these code snippets in your functions.php file, you can easily create and manage custom user roles in WordPress.