PluginProbe
SweepPress: Website Cleanup and Optimization / 3.2
SweepPress: Website Cleanup and Optimization v3.2
trunk 1.1 1.2 1.3 1.4 1.4.1 1.5 1.6 1.7 1.8 2.0 2.1 2.1.1 2.2 2.3 2.3.1 2.4 2.4.1 2.4.2 2.5 2.6 3.0 3.1 3.1.1 3.2 All 39 releases
sweeppress / forms / setup-cache.php

setup-cache.php in SweepPress: Website Cleanup and Optimization 3.2, at forms/setup-cache.php

22 lines 342 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if ( ! defined( 'ABSPATH' ) ) {
4 exit;
5 }
6
7 ?>
8 <div class="d4p-install-block">
9 <h4>
10 <?php esc_html_e( 'Purge estimates cache', 'sweeppress' ); ?>
11 </h4>
12 <div>
13 <?php
14
15 sweeppress_settings()->purge_sweeper_cache();
16
17 esc_html_e( 'Cached data has been purged.', 'sweeppress' );
18
19 ?>
20 </div>
21 </div>
22