Created
March 2, 2017 14:14
-
-
Save remyperona/9173dd1d7465c78841e5a9b500a497a2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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