The members members show human caps function.
Published Date - July 31, 2023
Whether to show human-readable caps.
members_show_human_caps();
The following example is for adding a hook callback.
if ( !function_exists( 'members_show_human_caps' ) ) {
require_once ABSPATH . PLUGINDIR . 'membersmembers/inc/functions-options.php';
}
// NOTICE! Understand what this does before running.
$result = members_show_human_caps();
The function is defined in the following location(s).
members/inc/functions-options.php
function members_show_human_caps() {
return apply_filters( 'members_show_human_caps', members_get_setting( 'show_human_caps' ) );
}