WP_Roles::remove_cap( string $role, string $cap )

Remove capability from role.


Description Description


Parameters Parameters

$role

(string) (Required) Role name.

$cap

(string) (Required) Capability name.


Top ↑

Source Source

File: wp-includes/class-wp-roles.php

	public function remove_cap( $role, $cap ) {
		if ( ! isset( $this->roles[ $role ] ) ) {
			return;
		}

		unset( $this->roles[ $role ]['capabilities'][ $cap ] );
		if ( $this->use_db ) {
			update_option( $this->role_key, $this->roles );
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.