WP_Users_List_Table::get_columns(): string[]

Gets a list of columns for the list table.


Return

string[] Array of column titles keyed by their column name.


Top ↑

Source

File: wp-admin/includes/class-wp-users-list-table.php. View all references

public function get_columns() {
	$columns = array(
		'cb'       => '<input type="checkbox" />',
		'username' => __( 'Username' ),
		'name'     => __( 'Name' ),
		'email'    => __( 'Email' ),
		'role'     => __( 'Role' ),
		'posts'    => _x( 'Posts', 'post type general name' ),
	);

	if ( $this->is_site_users ) {
		unset( $columns['posts'] );
	}

	return $columns;
}


Top ↑

Changelog

Changelog
Version Description
3.1.0 Introduced.

Top ↑

User Contributed Notes

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