Reference › Hooks apply_filters( "manage_{$screen->id}_columns" , string[] $columns )
Since 3.0.0 Description Parameters Fired at Source History Filters the column headers for a list table on a specific screen.
Description The dynamic portion of the hook name, $screen->id, refers to the ID of a specific screen. For example, the screen ID for the Posts list table is edit-post, so the filter for that screen would be manage_edit-post_columns.
Parameters
$columnsstring[] The column header labels keyed by column ID. Fired at · 1 wp-admin/includes/screen.php:37get_column_headers() Source View on Trac ↗ View on GitHub ↗
31 * manage_edit- post_columns. 32 * 33 * @since 3.0 .0 34 * 35 * @param string [ ] $columns The column header labels keyed by column ID . 36 * / 37 $column_headers [ $screen -> id ] = apply_filters ( "manage_{ $screen -> id } _columns" , array ( ) ) ; 38 } 39 40 return $column_headers [ $screen -> id ] ; 41 } 42 43 / ** History Introduced in 3.0.0 . Unchanged from 6.7.7 through 7.1.0.
6.7.7 6.8.8 6.9.7 7.0.4 7.1.0 Signature, return type and hooks compared across 5 parsed releases.
About this page Parsed data Generated from the wordpress-develop 6.8.8 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. Corrections Something wrong on this page? Report it and it gets fixed in the next regeneration.