I am using wp 3.5 i have a custom post (sp_product)
and also i have custom taxonomy. I want to remove that custom taxonomy filter column but i don’t want to make 'show_admin_column' => false
.
I wanna unset from $columns['']
.
How should i do that ? i also want to add some css/js when it will show in column and top select menu. (showing in this image like)
To hide columns in a Custom Post Type screen, you need the filter
manage_{$this->screen->id}_columns
.To add custom CSS/Javascript in a specific screen, you can use the action
admin_head-$hook_suffix
. The following code hides the Show all dates, View all categories and Filter elements: