Changeset 3139917
- Timestamp:
- 08/22/2024 06:17:04 PM (20 months ago)
- Location:
- wp-multitasking/trunk
- Files:
-
- 4 edited
-
includes/pagespeed-insights.php (modified) (1 diff)
-
includes/psi/settings.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
wp-multitasking.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-multitasking/trunk/includes/pagespeed-insights.php
r3137081 r3139917 250 250 */ 251 251 function convert_to_webp($img_source, $file_ext = 'jpg'){ 252 if($file_ext == "png"){ 252 if ($file_ext == "webp") { 253 return true; 254 } elseif($file_ext == "png"){ 253 255 $webp_buf = imagecreatefrompng($img_source); 254 256 }elseif($file_ext == "jpg" || $file_ext == "jpeg"){ -
wp-multitasking/trunk/includes/psi/settings.php
r3137081 r3139917 48 48 </tr> 49 49 <tr> 50 <td >50 <td style="vertical-align: top;"> 51 51 <label for="wpmt_psi_image_lazyload">Lazyload for images:</label> 52 52 </td> … … 71 71 </tr> 72 72 <tr> 73 <td >73 <td style="vertical-align: top;"> 74 74 <label for="wpmt_psi_wprocket_css_inline">WP Rocket CSS Inline:</label> 75 75 </td> … … 87 87 </tr> 88 88 <tr> 89 <td >Recommends:</td>89 <td style="vertical-align: top;">Recommends:</td> 90 90 <td> 91 91 <p>HTML Minify with plugin <a href="https://wordpress.org/plugins/autoptimize/" target="_blank">Autoptimize</a></p> -
wp-multitasking/trunk/readme.txt
r3137081 r3139917 4 4 Tags: Google PageSpeed Insights,shorcode,mark id,bbcode,welcome popup,exit popup,popup,addquicktag,custom post type,post type,remove base slug 5 5 Requires at least: 2.1.0 6 Tested up to: 6. 4.27 Stable tag: 0.1.1 56 Tested up to: 6.6.1 7 Stable tag: 0.1.16 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 86 86 == Changelog == 87 87 88 = 0.1.16 = 89 * Fix convert WebP 90 88 91 = 0.1.15 = 89 92 * Update PSI -
wp-multitasking/trunk/wp-multitasking.php
r3137081 r3139917 4 4 Plugin URI: http://wordpress.org/plugins/wp-multitasking/ 5 5 Description: This plugin is synthetic utility for your WordPress site: Shortcode, BBCode, AddQuickTag, Exit pop-up, Welcome pop-up, Remove base slug, SMTP, Classic Editor, Classic widgets... 6 Version: 0.1.1 56 Version: 0.1.16 7 7 Author: thangnv27 8 8 Author URI: https://ngothang.me/ … … 22 22 23 23 if ( ! defined( 'WPMT_VER' ) ) 24 define( 'WPMT_VER', '0.1.1 5' );24 define( 'WPMT_VER', '0.1.16' ); 25 25 26 26 add_action('admin_menu', 'wpmt_add_settings_page');
Note: See TracChangeset
for help on using the changeset viewer.