PluginProbe
Powered Cache – Caching and Optimization for WordPress – Easily Improve PageSpeed & Web Vitals Score / 1.1.2
Powered Cache – Caching and Optimization for WordPress – Easily Improve PageSpeed & Web Vitals Score v1.1.2
trunk 1.0 1.0.1 1.1 1.1.1 1.1.2 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1 2.1.1 2.1.2 2.2 2.2.1 All 69 releases
powered-cache / extensions / preload / preload.php

preload.php in Powered Cache – Caching and Optimization for WordPress – Easily Improve PageSpeed & Web Vitals Score 1.1.2, at extensions/preload/preload.php

26 lines 636 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Extension Name: Preloader
4 * Extension URI: https://poweredcache.com/extensions/preload
5 * Description: Preload extension for Powered Cache
6 * Author: Powered Cache Team
7 * Version: 1.0
8 * Author URI: https://poweredcache.com
9 * Extension Image: extension-image.png
10 * License: GPLv2 (or later)
11 */
12
13 require_once 'inc/class-powered-cache-preload-process.php';
14
15
16 Powered_Cache_Preload_Process::factory();
17
18 if ( is_admin() ) {
19 require_once 'inc/class-powered-cache-preload-admin.php';
20 Powered_Cache_Preload_Admin::factory();
21 }
22
23
24 // make description translatable
25 __( 'Preload extension for Powered Cache', 'powered-cache' );
26