wp_redirect giving a warning: Cannot modify header information – custom plugin
You cannot redirect inside process_bulk_actions() call, by the time WordPress is processing that file headers were already sent ( do not know exactly why ). You should simply write a message, and use wp_die( $message ) instead of die(). When you use bulk actions WordPress redirects that action to the file showing the list, and … Read more