Created
December 15, 2025 12:55
-
-
Save xlplugins/6d2a3fb7612487166a9074df6d549248 to your computer and use it in GitHub Desktop.
Funnelkit order Bump: Exclude bump Js from Sg Optimizer
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
| add_filter( 'sgo_js_minify_exclude', 'emd_exclude_mv_scripts_handles' ); | |
| add_filter( 'sgo_javascript_combine_exclude', 'emd_exclude_mv_scripts_handles' ); | |
| add_filter( 'sgo_js_async_exclude', 'emd_exclude_mv_scripts_handles' ); | |
| function emd_exclude_mv_scripts_handles( $exclude_list ) { | |
| $exclude_list[] = 'wfob-bump'; | |
| return $exclude_list; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment