Skip to content

Instantly share code, notes, and snippets.

@florianbrinkmann
Created May 2, 2018 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save florianbrinkmann/c5cb1152da505240bb4e3e6052f6135b to your computer and use it in GitHub Desktop.
Save florianbrinkmann/c5cb1152da505240bb4e3e6052f6135b to your computer and use it in GitHub Desktop.
Remove lightbox script from Hannover WordPress theme.
<?php
add_action( 'wp_enqueue_scripts', 'hannover_child_remove_lightbox', 100 );
/**
* Remove the Hannover lightbox script.
*/
function hannover_child_remove_lightbox() {
wp_dequeue_script( 'hannover-lightbox' );
wp_deregister_script( 'hannover-lightbox' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment