Voulez-vous désactiver la bibliothèque de localisation l10n.js dans WordPress 3.1 ou supérieur ? Bien que la bibliothèque JavaScript ne soit pas nécessaire pour vous, nous avons créé un extrait de code rapide que vous pouvez utiliser pour supprimer le JavaScript l10.js dans WordPress.
Instructions:
Tout ce que vous avez à faire est d’ajouter ce code au fichier functions.php de votre thème ou dans un plugin spécifique à votre site:
add_action( 'init', 'remove_l1on' ); function remove_l1on() { if ( !is_admin() ) { wp_deregister_script('l10n'); } }
Note : Si c’est la première fois que vous ajoutez des extraits de code dans WordPress, veuillez consulter notre guide sur la façon d’ajouter correctement des extraits de code dans WordPress, afin de ne pas casser accidentellement votre site.
Si vous avez aimé cet extrait de code, n’hésitez pas à consulter nos autres articles sur le site comme : 9 meilleurs plugins d’accordéon WordPress et comment créer un formulaire de contact sur 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’);