manage_<post_type>_posts_columns
Filters the columns displayed in the Posts list table for a specific post type.
Description
The dynamic portion(s) of the hook name refer to the post type slug.
Parameters (1)
- 0. $posts_columns (array)
- An array of column names.
Usage
- To run the hook, copy the example below.
- $posts_columns = apply_filters( 'manage_{$post_type}_posts_columns', $posts_columns );
- if ( !empty( $posts_columns ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the manage_<post_type>_posts_columns callback
- function filter_manage_post_type_posts_columns( $posts_columns ) {
- // make filter magic happen here...
- return $posts_columns;
- };
- // add the filter
- add_filter( "manage_{$post_type}_posts_columns", 'filter_manage_post_type_posts_columns', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( "manage_{$post_type}_posts_columns", 'filter_manage_post_type_posts_columns', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /wp-admin/includes/class-wp-posts-list-table.php
- return apply_filters( "manage_{$post_type}_posts_columns", $posts_columns );