Remove date and category filters when editing custom post types
To remove the dates: function my_remove_date_filter( $months ) { global $typenow; // use this to restrict it to a particular post type if ( $typenow == ‘post’ ) { return array(); // return an empty array } return $months; // otherwise return the original for other post types } add_filter(‘months_dropdown_results’, ‘my_remove_date_filter’); To remove categories: function … Read more