WordPress插件WP-Rocket是一款非常好用的缓存生成和管理插件,可以大大提高网站访问速度。
但是,无论你是否付费,其开发人员都会在你的网站代码里留下注释广告。
如下图所示 ▼
接下来,分享如何删除WP Rocket插件注释代码、去除隐藏在页面中的广告?
去除WP Rocket插件网站前台注释代码方法
WP Rocket 从 2.0 版开始添加了 get_Rocket_footprint()
方法。 在页面源码末尾添加尾部图,也就是下面这段。 编辑以下路径中的WordPress文件以将其删除。
/wp-content/plugins/wp-Rocket/inc/classes/Buffer/class-cache.php
本文测试用的版本 3.9.x 大约是436行开始的。你可以看到 get_Rocket_footprint()
方法,大致如下:
private function get_Rocket_footprint( $time = '' ) { $footprint = defined( 'WP_Rocket_WHITE_LABEL_FOOTPRINT' ) ? "\n" . '<!-- Cached for great performance' : "\n" . '<!-- This website is like a Rocket, isn\'t it? Performance optimized by ' . WP_Rocket_PLUGIN_NAME . '. Learn more: https://wp-Rocket.me'; if ( ! empty( $time ) ) { $footprint .= ' - Debug: [email protected]' . $time; } $footprint .= ' -->'; //return $footprint; /*不返回注释 去除广告注释*/ }
由于WordPress插件通常处于不断更新的周期之中,具体位置可能会发生变化。
在这种情况之下:
- 你可以在本地下载插件文件。
- 使用Notepad++代码编辑器或其他编辑工具全局查找插件文件;
- 搜索关键词“
this website
”或“performance optimized
”。 - 在查找之后,对其进行注释或删除。