Cannot deregister a script using wp_deregister_script
When attempting to dequeue a script, we need to hook in after the script is enqueued, but before it’s printed. In this case, the Disqus plugin is using the wp_footer hook at a priority of 10 to enqueue the scripts. The footer scripts get printed during wp_footer at a priority of 20. So we should … Read more