PluginProbe ʕ •ᴥ•ʔ
Smush – Image Optimization, Compression, Lazy Load, WebP & CDN / 1.0.1
Smush – Image Optimization, Compression, Lazy Load, WebP & CDN v1.0.1
4.1.0 4.0.3 4.0.2 2.8.1 2.9.1 3.0.0 3.0.1 3.0.2 3.1.1 3.10.1 3.10.2 3.10.3 3.11.1 3.12.3 3.12.4 3.12.5 3.12.6 3.13.0 3.13.1 3.13.2 3.14.0 3.14.1 3.14.2 3.15.0 3.15.1 3.15.2 3.15.3 3.15.4 3.15.5 3.16.2 3.16.4 3.16.5 3.16.6 3.17.0 3.17.1 3.18.0 3.18.1 3.2.0.1 3.2.1 3.2.2.1 3.2.4 3.20.0 3.21.1 3.22.1 3.22.3 3.23.0 3.23.1 3.23.2 3.23.3 3.23.4 3.24.0 3.24.0-beta.2 3.3.0 3.3.1 3.3.2 3.4.1 3.4.2 3.6.1 3.6.3 3.7.0 3.7.1 3.7.2 3.7.3 3.8.2 3.8.3 3.8.4 3.8.5 3.8.7 3.8.8 3.9.0 3.9.1 3.9.11 3.9.2 3.9.4 3.9.5 3.9.8 3.9.9 trunk 1.0.0 1.0.1 1.0.2 1.1 1.1.1 1.1.2 1.1.3 1.2 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.1 1.3.2 1.3.3 1.3.4 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.5.1 1.6.5.2 1.6.5.3 1.6.5.4 1.7 1.7.1 1.7.1.1 2.0 2.0.1 2.0.3 2.0.4 2.0.5 2.0.6 2.0.6.2 2.0.6.3 2.0.6.5 2.0.7 2.0.7.1 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2 2.2.1 2.2.2 2.3 2.3.1 2.4 2.4.2 2.4.3 2.4.4 2.4.5 2.5.2 2.5.3 2.6.1 2.6.2 2.6.3 2.7 2.7.1 2.7.4 2.7.4.1 2.7.5 2.7.6 2.7.8 2.7.8.1 2.7.9.1 2.8.0 2.8.0.1
wp-smushit / options.php
wp-smushit Last commit date
JSON 17 years ago license.txt 17 years ago options.php 17 years ago readme.txt 17 years ago screenshot-1.jpg 17 years ago wp-smushit.php 17 years ago
options.php
23 lines
1 <?php
2 $wp_smushit_gif_to_png = intval(get_option('wp_smushit_gif_to_png'));
3 ?>
4 <div class="wrap">
5 <h2>WP Smush.it</h2>
6 <form method="post" action="options.php">
7 <input type="hidden" name="action" value="update" />
8 <input type="hidden" name="page_options" value="wp_smushit_gif_to_png" />
9 <?php wp_nonce_field('update-options'); ?>
10 <table class="form-table">
11 <tr valign="top">
12 <th scope="row"><?php _e('When Smush.it suggests converting a GIF to a PNG file&hellip;', WP_SMUSHIT_DOMAIN); ?></th>
13 <td>
14 <select name="wp_smushit_gif_to_png" id="wp_smushit_gif_to_png">
15 <option value="1"<?php echo $wp_smushit_gif_to_png == 1 ? ' selected="selected"' : ''; ?>><?php _e('Overwrite the GIF with a PNG', WP_SMUSHIT_DOMAIN); ?></option>
16 <option value="0"<?php echo $wp_smushit_gif_to_png == 0 ? ' selected="selected"' : ''; ?>><?php _e('Leave the GIF alone', WP_SMUSHIT_DOMAIN); ?></option>
17 </select>
18 </td>
19 </tr>
20 </table>
21 <p class="submit"><input type="submit" name="Submit" value="<?php _e('Save Changes') ?>" /></p>
22 </form>
23 </div>