WP_Role::remove_cap( string $cap )

Removes a capability from a role.


Description 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 Parameters

$cap

(string) (Required) Capability name.


Top ↑

Source Source

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

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

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.