FIXED: CANNOT MODIFY HEADER INFORMATION – HEADERS ALREADY SENT IN WORDPRESS

/* Allow redirection even if my theme starts to send output to the browser ================================================== */ add_action( ‘init’, ‘do_output_buffer’ ); function do_output_buffer() { ob_start(); }