Proper use of Output Buffer
No, you don’t need output buffering in this case. As a rule of thumb: Don’t use output buffering unless you really have to. Just imagine what happens if someone else uses output buffering too from a plugin and it crosses with yours: // plugin ob_start(); // later, you in your theme ob_start(); // you call … Read more