WP_Role::remove_cap( string $cap )

Removes a capability from a role.


Parameters

$cap

(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
2.0.0 Introduced.