WP_Role::remove_cap( string $cap )

Removes a capability from a role.


Description

This is a container for WP_Roles::remove_cap() to remove the capability from the role. That is to say, that WP_Roles::remove_cap() implements the functionality, but it also makes sense to use this class, because you don’t need to enter the role name.


Parameters

$cap

(string) (Required) Capability name.


Source

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

	public function remove_cap( $cap ) {
		unset( $this->capabilities[$cap] );
		wp_roles()->remove_cap( $this->name, $cap );
	}


Changelog

Changelog
Version Description
WP-2.0.0 Introduced.