This repository has been archived by the owner on Aug 12, 2023. It is now read-only.
Releases: junaidbhura/fly-dynamic-image-resizer
Releases · junaidbhura/fly-dynamic-image-resizer
Check for an error
- Check for an error in get_attachment_image_src() . Props christopherrolfe198
Added new filter 'fly_dir_path'
The location of the fly images folder can now be changed using a new filter: 'fly_dir_path'. The following code can be pasted into the functions.php file:
function change_fly_path( $path ) {
return '/var/www/html/wp-content/uploads/new-path/';
}
add_filter( 'fly_dir_path', 'change_fly_path' );
IIS URLs fix
- Fixed IIS URLs
General fixes
- Fix capability
- Full size now returns an array instead of a string