¿Desea desactivar la biblioteca de localización l10n.js en WordPress 3.1 o superior? Aunque la biblioteca JavaScript no es necesaria para usted, hemos creado un fragmento de código rápido que puede utilizar para eliminar l10.js JavaScript en WordPress.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
add_action( 'init', 'remove_l1on' ); function remove_l1on() { if ( !is_admin() ) { wp_deregister_script('l10n'); } }
Nota: Si es la primera vez que añades fragmentos de código en WordPress, consulta nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente tu sitio.
Si le ha gustado este fragmento de código, por favor, considere revisar nuestros otros artículos en el sitio como: 9 mejores plugins de acordeón para WordPress y cómo crear un formulario de contacto en 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’);