How to dequeue a script?

WordPress has wp_enqueue_script() but not a wp_dequeue_script() function, so what would be the best way to dequeue a script? I’m using LAB.js to load all of my scripts rather than enqueueing them server side, so I don’t want plugins running around adding jQuery 10 times when I’m already loading it.

Would using wp_deregister_script( 'jquery' ) accomplish the same purpose?

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

There is a dequeue method available … I’m just not sure why it isn’t wrapped in a wp_dequeue_script() method. (I might create a ticket for this issue, actually)

But yes, using wp_deregister_script will accomplish what you’re trying to do. Just remember, if you ever do want to use WP’s built-in jQuery later you’ll need to re-queue it first.

Method 2

Since WordPress 3.1 there is actually a wp_dequeue_script() function available.


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x