photon module image compression
-
Jetpack – photon module cached iamges on my website: konrat.com.tr, before I compressed them. And since its cached, I cannot compress them anymore, and as a result, my homepage’s loading speed is pretty slow.
I tried to reduce the image sizes by doing followings: First, I downloaded and activated plugin called code-snippets. And then, I copied and pasted code below, and activated the snippet.
add_filter('jetpack_photon_pre_args', 'jetpackme_custom_photon_compression' ); function jetpackme_custom_photon_compression( $args ) { $args['quality'] = 80; $args['strip'] = 'all'; return $args; }
Yet the result didn’t change, my images look all the same. Therefore, how can I resolve this issue?
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘photon module image compression’ is closed to new replies.