mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
14 lines
363 B
Text
14 lines
363 B
Text
<?php
|
|
add_filter('pre_get_imagify_option_resize_larger', function (): int {
|
|
return 1;
|
|
});
|
|
add_filter('get_imagify_option_resize_larger', function (): int {
|
|
return 1;
|
|
});
|
|
add_filter('pre_get_imagify_option_resize_larger_w', function (): int {
|
|
return 1921;
|
|
});
|
|
add_filter('get_imagify_option_resize_larger_w', function (): int {
|
|
return 1921;
|
|
});
|
|
?>
|