PluginProbe
WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance / 3.2.19
WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance v3.2.19
4.6.1 4.6.0 4.5.5 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 All 110 releases
wp-optimize / optimizations / inactive-tags.php

inactive-tags.php in WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance 3.2.19, at optimizations/inactive-tags.php

33 lines 569 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if (!defined('WPO_VERSION')) die('No direct access allowed');
4
5 class WP_Optimization_tags extends WP_Optimization {
6
7 public $available_for_auto = false;
8
9 public $auto_default = false;
10
11 public $ui_sort_order = 12000;
12
13 public function optimize() {
14
15 }
16 public function get_info() {
17
18 }
19
20 public function settings_label() {
21 return __('Remove unused tags', 'wp-optimize');
22 }
23
24 /**
25 * Return description
26 * N.B. This is not currently used; it was commented out in 1.9.1
27 *
28 * @return string|void
29 */
30 public function get_auto_option_description() {
31 }
32 }
33