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?