现在这些插件真的是烦的很,网站后台各种广告也就算了,前台源代码里也不忘了给自己宣传,真是够了。

安装 Yoast SEO 插件后,会在源代码中出现一串下面的文字:
<!-- This site is optimized with the Yoast SEO plugin v9.6 - https://yoa.st/1yg?utm_content=9.6 -->
虽然是注释掉了的,但看着就是不爽,删掉的代码如下:
将下面代码,添加到你主题或者子主题的 functions.php 文件里。
// Remove All Yoast HTML Comments
//if (defined('WPSEO_VERSION')) {
add_action('wp_head',function() { ob_start(function($o) {
return preg_replace('/^\n?\<\!\-\-.*?[Y]oast.*?\-\-\>\n?$/mi','',$o);
}); },~PHP_INT_MAX);
//}
保存后前台去刷新看,就没有了。