Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public function __construct()
  2. {
  3.  
  4. add_action( 'wp_head', array( $this, 'start') );
  5. add_action( 'wp_print_footer_scripts', array( $this, 'end') );
  6.  
  7. } // end constructor
  8.  
  9. public function start() { ob_start( array( $this, 'callback' ) ); } // end start
  10.  
  11. public function end() { ob_end_flush(); } // end end
  12.  
  13. public function callback( $buffer )
  14. {
  15.  
  16. // do some stuff
  17.  
  18. return $buffer;
  19.  
  20. } // end callback
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement