Custom Taxonomies
Note: this feature requires PW Bulk Edit Pro.
Follow these instructions to add the custom taxonomies to the Bulk Editor:
1. Download the free Code Snippets plugin: https://wordpress.org/plugins/code-snippets/
2. Create a Snippet with the following code (adjust to match your taxonomies):
$GLOBALS['pw_bulk_edit_custom_taxonomies'] = array( array( 'slug' => 'brand', 'name' => 'Brands', 'plural' => 'brands' ), array( 'slug' => 'collection', 'name' => 'Collections', 'plural' => 'collections' ), array( 'slug' => 'print_number', 'name' => 'Print Numbers', 'plural' => 'print_numbers' ), array( 'slug' => 'schedule', 'name' => 'Schedules', 'plural' => 'schedules' ), );
Replace the values with your actual custom taxonomies.