📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 20:13:26
📂
/ (Root)
/
home
/
apkbfjox
/
kattu.com.pk
/
wp-content
/
plugins
/
wp-rocket
/
inc
/
ThirdParty
/
Plugins
/
Optimization
📍 /home/apkbfjox/kattu.com.pk/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/Optimization
🔄 Refresh
✏️
Editing: RocketLazyLoad.php
Writable
<?php namespace WP_Rocket\ThirdParty\Plugins\Optimization; use WP_Rocket\Event_Management\Subscriber_Interface; class RocketLazyLoad implements Subscriber_Interface { /** * Return an array of events that this subscriber wants to listen to. * * @return array */ public static function get_subscribed_events(): array { if ( ! defined( 'ROCKET_LL_VERSION' ) ) { return []; } return [ 'rocket_delay_js_exclusions' => 'exclude_rocket_lazyload_script', ]; } /** * Excludes rocket lazyload script from delay js. * * @param array $excluded List of excluded files. * * @return array */ public function exclude_rocket_lazyload_script( $excluded ): array { $excluded[] = 'rocket-lazy-load/assets/js/\d\d\.\d/lazyload.min.js'; return $excluded; } }
💾 Save Changes
❌ Cancel