Answers for "wp plugin handles deregister"

PHP
0

wp plugin handles deregister

//you can easily deregister them using the code below:

add_action( 'wp_print_scripts', 'my_deregister_javascript', 100 );
 
function my_deregister_javascript() {
wp_deregister_script( 'contact-form-7' );
wp_deregister_script( 'gdwpm_lightbox-script' );
wp_deregister_script( 'another-plugin-script' );
}
Posted by: Guest on March-08-2022

Browse Popular Code Answers by Language