WP_Users_List_Table::get_columns()

Get a list of columns for the list table.


Return

(array) Array in which the key is the ID of the column, and the value is the description.


Source

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

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

		if ( $this->is_site_users )
			unset( $c['posts'] );

		return $c;
	}


Changelog

Changelog
Version Description
WP-3.1.0 Introduced.