Bulk actions and post status with ‘show_in_admin_all_list’: false option
-
When a post type has a post status with the option
show_in_admin_all_list
set tofalse
, bulk action withpost_status=all
is stopped by this condition:`
if ( $num_items != $num_posts ) {
return;
}
`
F.e. i have 12 posts in ‘all’ tab (10 per page) and 5 posts in a tab with show_in_admin_all_list:false post status; this condition turns to
if ( 12 != 17 )
, and the plugin silently returns here, so i get only 10 posts processed.Am i doing something wrong? Is there a workaround? Thank you in advance!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Bulk actions and post status with ‘show_in_admin_all_list’: false option’ is closed to new replies.