How to modify final output in wordpress
WordPress has great filter support for getting at all sorts of specific bits of content and modifying it before output. Like the_content filter, which lets you access the markup for a post before it’s output to the screen. WordPress also have action hook that fires just before PHP shuts down execution. do_action( ‘shutdown’ ) By adding function…