mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
6 lines
245 B
Text
6 lines
245 B
Text
add_filter( 'sgo_javascript_combine_excluded_external_paths', 'js_combine_exclude_external_script' );
|
|
function js_combine_exclude_external_script( $exclude_list ) {
|
|
$exclude_list[] = 'challenges.cloudflare.com';
|
|
|
|
return $exclude_list;
|
|
}
|