mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
8 lines
219 B
Text
8 lines
219 B
Text
<?php
|
|
add_filter('jetpack_photon_pre_args', 'jetpackme_custom_photon_compression' );
|
|
function jetpackme_custom_photon_compression( $args ) {
|
|
$args['quality'] = 90;
|
|
$args['strip'] = 'all';
|
|
return $args;
|
|
}
|
|
?>
|