BP_Members_List_Table::get_columns()

Specific signups columns.

Description

Return

(array)

Source

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

	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.