Skip to content

Instantly share code, notes, and snippets.

@sibaberpollo
Created April 12, 2016 17:41
Show Gist options
  • Save sibaberpollo/350af9b89fdd06073394af0f087a3d5c to your computer and use it in GitHub Desktop.
Save sibaberpollo/350af9b89fdd06073394af0f087a3d5c to your computer and use it in GitHub Desktop.
reescribir todo el html de un wordpress
function callback($buffer) {
// modify buffer here, and then return the updated code
return $buffer;
}
function buffer_start() { ob_start("callback"); }
function buffer_end() { ob_end_flush(); }
add_action('wp_loaded', 'buffer_start');
add_action('shutdown', 'buffer_end');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment