Skip to content

Instantly share code, notes, and snippets.

@bewho
Forked from paulcollett/functions.php
Created June 7, 2018 08:18
Show Gist options
  • Save bewho/4055221702cf36f5728f191942f18ce4 to your computer and use it in GitHub Desktop.
Save bewho/4055221702cf36f5728f191942f18ce4 to your computer and use it in GitHub Desktop.
Remove Yoast HTML Comments “This site is optimized with the Yoast WordPress SEO plugin”
// Add to your Wordpress Theme's functions.php
// Remove All Yoast HTML Comments
// https://gist.github.com/paulcollett/4c81c4f6eb85334ba076
add_action('wp_head',function() { ob_start(function($o) {
return preg_replace('/^\n?<!--.*?[Y]oast.*?-->\n?$/mi','',$o);
}); },~PHP_INT_MAX);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment