Using ob_start() in plugin
No, this is not a correct use for ob_start(). You’re getting the warning because your script is outputting code before the page headers are sent – meaning you’re printing output before the html page. Without knowing what’s going on in your // other plugin code it’s difficult to say what’s happening exactly. I would guess … Read more