WP_MS_Users_List_Table::get_columns() WordPress Method
The WP_MS_Users_List_Table::get_columns() method is used to retrieve the columns for the users list table. This method is used internally by the class to generate the table, and is not meant to be called directly.
WP_MS_Users_List_Table::get_columns() #
Return
(array)
Source
File: wp-admin/includes/class-wp-ms-users-list-table.php
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | public function get_columns() { $users_columns = array ( 'cb' => '<input type="checkbox" />' , 'username' => __( 'Username' ), 'name' => __( 'Name' ), 'email' => __( 'Email' ), 'registered' => _x( 'Registered' , 'user' ), 'blogs' => __( 'Sites' ), ); /** * Filters the columns displayed in the Network Admin Users list table. * * @since MU (3.0.0) * * @param string[] $users_columns An array of user columns. Default 'cb', 'username', * 'name', 'email', 'registered', 'blogs'. */ return apply_filters( 'wpmu_users_columns' , $users_columns ); } |
Expand full source codeCollapse full source codeView on TracView on GitHub