Você deseja desativar a biblioteca de localização l10n.js no WordPress 3.1 ou superior? Embora a biblioteca JavaScript não seja necessária para você, criamos um trecho de código rápido que pode ser usado para remover o JavaScript l10.js no WordPress.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site:
add_action( 'init', 'remove_l1on' ); function remove_l1on() { if ( !is_admin() ) { wp_deregister_script('l10n'); } }
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como adicionar corretamente trechos de código no WordPress para não danificar acidentalmente seu site.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 9 melhores plug-ins de acordeão do WordPress e como criar um formulário de contato no WordPress.
The code on the page misses the last }
Thanks Alexey, Didn’t notice that, updated the post.
Hey!
Could you please explain how to remove jQuery UI, jQuery UI Widget and jQuery UI Tabs as well? As I’m not using them on my website, I’d like to stop them from loading.
Thanks in advance.
Hi ucarmetin
Are these part of the theme or plugin?
you should be able to just use this if the plugin or theme registered things that way.
wp_deregister_script(‘name of script’);
they’re loaded neither by the theme nor any of the plugins i’m using. i’ve come to this conclusion after doing further investigation of the theme and plugin code as well contacting theme developers. anway, i’ll try your suggestion.
thanks.
If you can let me know some of the plugins you are running I can take a look. Rather then post a list publicly just click the contact link at the bottom of the wpsnipp.com site and send an email ill check things out.
Hi ucarmetin
Are these part of the theme or plugin?
you should be able to just use this if the plugin or theme registered things that way.
wp_deregister_script(‘name of script’);