BP_Members_List_Table::get_columns()

Specific signups columns.

Description

Return

(array)

Source

File: bp-members/classes/class-bp-members-list-table.php

142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
public function get_columns() {
 
    /**
     * Filters the single site Members signup columns.
     *
     * @since BuddyPress 2.0.0
     *
     * @param array $value Array of columns to display.
     */
    return apply_filters( 'bp_members_signup_columns', array(
        'cb'         => '<input type="checkbox" />',
        'username'   => __( 'Username',    'buddyboss' ),
        'name'       => __( 'Name',        'buddyboss' ),
        'email'      => __( 'Email',       'buddyboss' ),
        'registered' => __( 'Registered''buddyboss' ),
        'date_sent'  => __( 'Last Sent',   'buddyboss' ),
        'count_sent' => __( 'Emails Sent', 'buddyboss' )
    ) );
}

Changelog

Changelog
Version Description
BuddyPress 2.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.