Small fix for current WordPress / PHP
-
Current version 3.1 works fine with latest WordPress 6.4.x and PHP 8.1.x but shows some PHP warnings in error log:
PHP Deprecated: Required parameter $height follows optional parameter $attach_id ... in tiled-gallery line 138
There is an easy fix for that, replace this old line 138
public function vt_resize( $attach_id = null, $img_url = null, $width, $height, $crop = false ) {
with this new line 138:
public function vt_resize( $attach_id = null, $img_url = null, $width = 0, $height = 0, $crop = false ) {
Thanks for this very nice plugin.
- The topic ‘Small fix for current WordPress / PHP’ is closed to new replies.