apply_filters( ‘additional_capabilities_display’, bool $enable, WP_User $profile_user )

In this article

Filters whether to display additional capabilities for the user.

Description

The ‘Additional Capabilities’ section will only be enabled if the number of the user’s capabilities exceeds their number of roles.

Parameters

$enablebool
Whether to display the capabilities. Default true.
$profile_userWP_User
The current WP_User object.

Source

$display_additional_caps = apply_filters( 'additional_capabilities_display', true, $profile_user );

Changelog

VersionDescription
2.8.0Introduced.

User Contributed Notes

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