hustonj
7/2/2019 - 2:01 PM

WordPress Allow Redirection - Output Buffer

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();
}