PluginProbe
SweepPress: Website Cleanup and Optimization / trunk
SweepPress: Website Cleanup and Optimization vtrunk
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 trunk, at forms/setup-cache.php

22 lines 321 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