Skip to content

Instantly share code, notes, and snippets.

@remyperona
Created March 2, 2017 14:14
Show Gist options
  • Save remyperona/9173dd1d7465c78841e5a9b500a497a2 to your computer and use it in GitHub Desktop.
Save remyperona/9173dd1d7465c78841e5a9b500a497a2 to your computer and use it in GitHub Desktop.
<?php
function wp_rocket_add_images( $file_types ) {
$file_types[] = 'jpg';
$file_types[] = 'gif';
$file_types[] = 'png';
return $file_types;
}
add_filter( 'rocket_cdn_custom_filetypes', 'wp_rocket_add_images' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment