mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
6 lines
141 B
Text
6 lines
141 B
Text
function jp_custom_params( $args ) {
|
|
$args['quality'] = 100;
|
|
|
|
return $args;
|
|
}
|
|
add_filter( 'jetpack_photon_pre_args', 'jp_custom_params' );
|