File tree 4 files changed +14
-2
lines changed
4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,10 @@ click on "Create new translation" at the bottom/left of this window.
31
31
32
32
== Changelog ==
33
33
34
+ = 0.1.3 =
35
+
36
+ * Remove Auto Sizes for Lazy Loaded Image in Wordpress (added in WP 6.7)
37
+
34
38
= 0.1.2 =
35
39
36
40
* Block Visibility : Define more default settings values and deregister screen_size inline css.
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ // Remove Auto Sizes for Lazy Loaded Image in Wordpress (added in WP 6.7)
4
+ // https://make.wordpress.org/core/2024/10/18/auto-sizes-for-lazy-loaded-images-in-wordpress-6-7/
5
+ add_filter ('wp_img_tag_add_auto_sizes ' , '__return_false ' );
Original file line number Diff line number Diff line change
1
+ <?php // Silence is golden
Original file line number Diff line number Diff line change 3
3
* Plugin Name: MILL3 WP Utils
4
4
* Plugin URI: https://github.com/Mill3/mill3-wp-utils-plugin
5
5
* Description: MILL3 WP Utils
6
- * Version: 0.1.2
6
+ * Version: 0.1.3
7
7
* Author: MILL3 Studio
8
8
* Author URI: https://mill3.studio/
9
9
* Tested up to: 6.6.6
26
26
* Start at version 0.0.1 and use SemVer - https://semver.org
27
27
* Rename this for your plugin and update it as you release new versions.
28
28
*/
29
- define ( 'MILL3_WP_UTILS_VERSION ' , '0.1.2 ' );
29
+ define ( 'MILL3_WP_UTILS_VERSION ' , '0.1.3 ' );
30
30
31
31
32
32
/**
76
76
require plugin_dir_path ( __FILE__ ) . 'admin/class-html-helper.php ' ;
77
77
require plugin_dir_path ( __FILE__ ) . 'admin/class-mill3-wp-utils-admin.php ' ;
78
78
79
+ require plugin_dir_path ( __FILE__ ) . 'core/core.php ' ;
80
+
79
81
require plugin_dir_path ( __FILE__ ) . 'components/ai-image-alt/ai-image-alt.php ' ;
80
82
require plugin_dir_path ( __FILE__ ) . 'components/avatar/avatar.php ' ;
81
83
require plugin_dir_path ( __FILE__ ) . 'components/block-visibility/block-visibility.php ' ;
You can’t perform that action at this time.
0 commit comments