Last active
October 14, 2015 20:47
-
-
Save kraftbj/b158f1fa36769847363c to your computer and use it in GitHub Desktop.
Deregister application.js
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_action( 'wp_enqueue_scripts', 'remove_application_js' , 11 ); | |
| function remove_application_js(){ | |
| wp_deregister_script( 'wp-job-manager-job-application' ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment