Created
August 21, 2026 12:50
-
-
Save plugin-republic/3f5e2b90cb04164d95cf3e750d587f57 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 | |
| /** | |
| * Dequeue dropzone sitewide | |
| */ | |
| add_action( 'wp_print_scripts', 'my_dequeue_pewc_dropzone', 100 ); | |
| add_action( 'wp_print_styles', 'my_dequeue_pewc_dropzone', 100 ); | |
| function my_dequeue_pewc_dropzone() { | |
| wp_dequeue_script( 'pewc-dropzone' ); | |
| wp_deregister_script( 'pewc-dropzone' ); | |
| wp_dequeue_style( 'pewc-dropzone' ); | |
| wp_deregister_style( 'pewc-dropzone' ); | |
| wp_dequeue_style( 'pewc-dropzone-basic' ); | |
| wp_deregister_style( 'pewc-dropzone-basic' ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment