manage_taxonomies_for_attachment_columns
Filters the taxonomy columns for attachments in the Media list table.
Usage
add_filter( 'manage_taxonomies_for_attachment_columns', 'wp_kama_manage_taxonomies_for_attachment_columns_filter', 10, 2 ); /** * Function for `manage_taxonomies_for_attachment_columns` filter-hook. * * @param string[] $taxonomies An array of registered taxonomy names to show for attachments. * @param string $post_type The post type. * * @return string[] */ function wp_kama_manage_taxonomies_for_attachment_columns_filter( $taxonomies, $post_type ){ // filter... return $taxonomies; }
- $taxonomies(string[])
- An array of registered taxonomy names to show for attachments.
- $post_type(string)
- The post type.
Default: 'attachment'
Changelog
Since 3.5.0 | Introduced. |
Where the hook is called
manage_taxonomies_for_attachment_columns
wp-admin/includes/class-wp-media-list-table.php 351
$taxonomies = apply_filters( 'manage_taxonomies_for_attachment_columns', $taxonomies, 'attachment' );