X

Cómo añadir botones de subíndice y superíndice al editor

Snippets by IsItWP

¿Estás buscando una forma de añadir botones de subíndice y superíndice al editor de WordPress? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que puede utilizar para agregar botones de subíndice y superíndice al editor.

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:

function enable_more_buttons($buttons) {
  $buttons[] = 'sub';
  $buttons[] = 'sup';
  return $buttons;
}
add_filter("mce_buttons_3", "enable_more_buttons");

Nota: Si es la primera vez que añade fragmentos de código en WordPress, consulte nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente su sitio.

Si te ha gustado este fragmento de código, por favor, considere revisar nuestros otros artículos en el sitio como: 20 mejores temas de WordPress para iglesias para ampliar el rebaño y cómo iniciar un blog.

Comentarios   Deja una respuesta

  1. Thomas Greenbank marzo 2, 2020 en 4:01 am

    When I try this I get “syntax error, unexpected end of file”

    1. You may want to check that the whole snippet was copied.
      Be sure to check out: https://www.isitwp.com/properly-add-code-snippets-wordpress-site/

  2. It is not working with the Elementor’s editor

    1. Sadly this snippet is not designed to work with Elementor and will most likely only work with the classic editor.

  3. Stephanie Boucher mayo 15, 2019 en 8:37 am

    This no longer seems to work. Any idea why?

    1. Commented this elsewhere, but just incase:

      For Anyone looking at this using WordPress on a version later than 3.9 that has TinyMCE 4 the function above won’t work, this is because WordPress and TinyMCE changed ‘sup’ to ‘superscript’ and ‘sub’ to ‘subscript’ – If you make those changes in the code above it will work fine!

  4. I am getting a Missing argument 1 for enable_more_buttons() error

  5. Nguy?n Trung D?ng marzo 11, 2013 en 11:52 pm

    you saved my day man

  6. thanks fot tip

  7. Just what I was looking for!

  8. Donald G. McGahan enero 10, 2013 en 11:13 pm

    When I add it, I get a

    Fatal error: Call to undefined function add_filter()

  9. Perfect little piece of code! Works brilliant. Thanks a lot!

    1. No problem glad that I could help!

  10. thanks guys.  i was working with a PhD client today who writes research
    reports and it was necessary for her to sup and sub references.  this
    was key.

    1. Perfect Jerry glad to hear you got things working well.

  11. (text translated by the program)
    Thank you for providing this code, but no need to repeat the array code, simply separate the items in the array

    function enable_more_buttons($buttons) {
    $buttons[] = ‘sub , sup’;
    return $buttons;
    }
    add_filter(“mce_buttons_2”, “enable_more_buttons”);

    1. This is true, I just find this method easier to read. Thanks for the input though people will find this very useful.

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!