#10595 closed feature request (duplicate)
Allow plugins to add columns to user management screen
Reported by: | martinv5 | Owned by: | |
---|---|---|---|
Milestone: | Priority: | high | |
Severity: | trivial | Version: | 2.8.3 |
Component: | Administration | Keywords: | manage_users_custom_column user management |
Focuses: | Cc: |
Description
It's here on line 1974 in wp-admin/includes/template.php:
apply_filters('manage_users_custom_column', , $column_name, $user_object->ID);
An empty argument it passed to the filter instead of the actual column name.
See the file here http://core.trac.wordpress.org/browser/branches/2.8/wp-admin/includes/template.php
Or am I missing something?
Thanks,
M.
Change History (2)
Note: See
TracTickets for help on using
tickets.
You are.
As explained on the other ticket from yesterday, You're not filtering the column name, You're filtering the contents of a possible extra column, which by default, it an empty string.
This filter is NOT for adding an extra column, rather, its for adding an extra <td>...</td> to the row output, you need to hook somewhere else to add the column first.
See: #10585