PluginProbe
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF / 1.7
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF v1.7
2.3.4 2.3.3 2.3.2 2.3.1 2.3.0 2.2.9 2.2.8 trunk 1.10 1.3.3 1.3.4 1.3.5 1.3.5.1 1.3.5.2 1.3.6 1.3.6.1 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.5 All 103 releases
imagify / views / part-settings-footer.php

part-settings-footer.php in Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF 1.7, at views/part-settings-footer.php

25 lines 455 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );
3
4 ?>
5
6 <div class="submit imagify-clearfix">
7 <?php
8 // Classical submit.
9 submit_button();
10
11 if ( imagify_valid_key() ) {
12 // Submit and go to bulk page.
13 submit_button(
14 esc_html__( 'Save & Go to Bulk Optimizer', 'imagify' ),
15 'secondary imagify-button-secondary', // Type/classes.
16 'submit-goto-bulk', // Name (id).
17 true, // Wrap.
18 array() // Other attributes.
19 );
20 }
21 ?>
22 </div>
23
24 <?php
25