Hi, I set my show_in_admin_all_list to false, which correctly updates the number shown next to the All link in the custom post type, but when you click on the all tab, it still shows all the posts regardless of post_status.
,'status' => array(
'draft' => array(
'label' => 'Draft'
)
,'past_trip' => array(
'label' => 'Past Trip'
,'show_in_admin_all_list' => false
)
,'hidden' => array(
'label' => 'Hidden'
)
,'publish' => array(
'label' => 'Public'
)
)