I want to remove the below text links in Edit Post screen:
All (8) | Published (5) | Draft (1) | Pending (2) | Trash (2)
After searching, i found that this can be done by this code here, but sadly it only works with 'post' type. I'm failed to make it works with my custom post type:
add_action( 'views_edit-post', 'remove_edit_post_views' );
function remove_edit_post_views( $views ) {
if( get_post_type() === 'movie' ) {
unset($views['all']);
unset($views['publish']);
unset($views['trash']);
}
return $views;
}
What's wrong with my code ?