PluginProbe ʕ •ᴥ•ʔ
WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance / 4.5.4
WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance v4.5.4
4.5.4 4.5.3 4.5.2 3.2.20 3.2.21 3.2.22 3.2.3 3.2.5 3.2.6 3.2.7 3.2.9 3.3.0 3.3.1 3.3.2 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.7.0 3.7.1 3.8.0 4.0.0 4.0.1 4.1.0 4.1.1 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.3.0 4.3.1 4.4.0 4.4.1 4.5.0 4.5.1 3.2.2 trunk 0.7.0 1.8.9.10 1.8.9.7 1.8.9.8 1.8.9.9 1.9 1.9.1 2.0.1 2.1.0 2.1.1 2.2.0 2.2.1 2.2.10 2.2.11 2.2.12 2.2.13 2.2.2 2.2.3 2.2.4 2.2.6 2.2.8 2.2.9 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 3.0.0 3.0.1 3.0.10 3.0.11 3.0.12 3.0.13 3.0.14 3.0.15 3.0.16 3.0.18 3.0.19 3.0.2 3.0.3 3.0.4 3.0.5 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.10 3.1.11 3.1.12 3.1.2 3.1.4 3.1.5 3.1.6 3.1.7 3.1.8 3.1.9 3.2.1 3.2.10 3.2.11 3.2.12 3.2.13 3.2.14 3.2.15 3.2.16 3.2.17 3.2.18 3.2.19
wp-optimize / templates / minify / capo-js.php
wp-optimize / templates / minify Last commit date
advanced-tab.php 1 month ago analytics-settings-tab.php 1 month ago asset-preload.php 1 month ago cached-file-log.php 1 month ago cached-file.php 1 month ago capo-js.php 1 month ago css-settings-tab.php 1 month ago font-settings-tab.php 1 month ago html-settings-tab.php 1 month ago js-settings-tab.php 1 month ago preload-tab.php 1 month ago settings-tab.php 1 month ago status-tab.php 1 month ago
capo-js.php
25 lines
1 <?php if (!defined('ABSPATH')) die('No direct access allowed'); ?>
2
3 <h3><?php esc_html_e('Optimize <head> with Capo.js rules', 'wp-optimize'); ?></h3>
4 <div class="wpo-fieldgroup">
5 <fieldset>
6 <?php esc_html_e('An unoptimized <head> can slow down your site.', 'wp-optimize'); ?> <?php esc_html_e('Apply Capo.js rules to quickly fix these issues and boost performance.', 'wp-optimize'); ?>
7 <div class="wpo-fieldgroup__subgroup">
8 <h4><label>
9 <input
10 name="enable_capo_js"
11 type="checkbox"
12 value="true"
13 disabled
14 >
15 <?php
16 // translators: %s is a link to Capo.js website
17 printf(esc_html__('Apply %s rules', 'wp-optimize'), '<a href="https://rviscomi.github.io/capo.js/" target="_blank">Capo.js</a>');
18 ?>
19 </label>
20 </h4>
21 <a class="" href="https://teamupdraft.com/wp-optimize/pricing/?utm_source=wpo-plugin&utm_medium=referral&utm_campaign=paac&utm_creative_format=overlay&utm_content=capo-js" target="_blank"><?php esc_html_e('Upgrade to WP-Optimize Premium to unlock Capo JS feature.', 'wp-optimize'); ?></a>
22 </div>
23 </fieldset>
24 </div>
25