Definition:
function register_column_headers($screen, $columns) {}
Register column headers for a particular screen.
Parameters
- string $screen: The handle for the screen to add help to. This is usually the hook name returned by the add_*_page() functions.
- array $columns: An array of columns with column IDs as the keys and translated column names as the values
Source code
function register_column_headers($screen, $columns) { $wp_list_table = new _WP_List_Table_Compat($screen, $columns); }
10162
No comments yet... Be the first to leave a reply!