Advertisement
fahimmurshed

Remove Yoast HTML Comments “This site is optimized with the Yoast WordPress"

Jul 2nd, 2023
537
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. //Remove Yoast HTML Comments
  2. //https://gist.github.com/robwent/f36e97fdd648a40775379a86bd97b332
  3.  
  4. function go_yoast() {
  5.   if (defined('WPSEO_VERSION')){
  6.       add_action('get_header',function (){ ob_start(function ($o){
  7.           return preg_replace('/\n?<.*?Yoast SEO plugin.*?>/mi','',$o); }); });
  8.       add_action('wp_head',function (){ ob_end_flush(); }, 999);
  9.   }
  10. }
  11. add_action('plugins_loaded', 'go_yoast');
  12.  
  13. // or
  14. add_filter( 'wpseo_debug_markers', '__return_false' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement