WP_Abilities_Registry::get_all_registered(): WP_Ability[]

In this article

Retrieves the list of all registered abilities.

Description

Do not use this method directly. Instead, use the wp_get_abilities() function.

See also

Return

WP_Ability[] The array of registered abilities.

Source

public function get_all_registered(): array {
	return $this->registered_abilities;
}

Changelog

VersionDescription
6.9.0Introduced.

User Contributed Notes

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