Skip to content

Instantly share code, notes, and snippets.

@Tabrisrp
Created December 22, 2016 01:01
Show Gist options
  • Save Tabrisrp/ca346570ce0b9ff6c7927c1ea2abff59 to your computer and use it in GitHub Desktop.
Save Tabrisrp/ca346570ce0b9ff6c7927c1ea2abff59 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Rocket CDN exe file
* Description: Use the CDN URL for exe files.
* Author: WP Rocket team
* License: GNU General Public License v3 or later
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
// Basic security, prevents file from being loaded directly.
defined( 'ABSPATH' ) or die( 'Cheatin&#8217; uh?' );
add_filter( 'rocket_cdn_custom_filetypes', 'wp_rocket_cdn_exe' );
function wp_rocket_cdn_exe( $extensions ) {
$extensions[] = 'exe';
return $extensions;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment