X

Eliminar l10n.js JavaScript en WP 3.1+

Snippets by IsItWP

¿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.

Comentarios   Deja una respuesta

  1. The code on the page misses the last }

    1. Thanks Alexey, Didn’t notice that, updated the post.

  2. 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.

    1. 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’);

      1. 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.

        1. 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.

    2. 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’);

Añadir un comentario

Nos alegra que haya decidido dejar un comentario. Tenga en cuenta que todos los comentarios se moderan de acuerdo con nuestra política de privacidad , y que todos los enlaces son nofollow. NO utilice palabras clave en el campo del nombre. Tengamos una conversación personal y significativa.

WordPress Launch Checklist

La lista definitiva para lanzar WordPress

Hemos recopilado todos los elementos esenciales de la lista de comprobación para el lanzamiento de su próximo sitio web de WordPress en un práctico ebook.
Sí, envíeme el ¡gratuito!