members_show_human_caps

The members members show human caps function.

Published Date - July 31, 2023

Description

Whether to show human-readable caps.

members_show_human_caps();

Usage

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();
            

Defined

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' ) );
}