X

Habilitar Editor TinyMCE para Post the_excerpt

Snippets by IsItWP

¿Quieres añadir el editor TinyMCE al área de texto del extracto de la entrada? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que puede utilizar para activar el editor TinyMCE para el post the_excerpt 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:

function tinymce_excerpt_js(){ ?>
<script type="text/javascript">
	jQuery(document).ready( tinymce_excerpt ); 
            function tinymce_excerpt() {
		jQuery("#excerpt").addClass("mceEditor"); 
		tinyMCE.execCommand("mceAddControl", false, "excerpt");
	    }
</script>
<?php }
add_action( 'admin_head-post.php', 'tinymce_excerpt_js');
add_action( 'admin_head-post-new.php', 'tinymce_excerpt_js');

function tinymce_css(){ ?>
<style type='text/css'>
	    #postexcerpt .inside{margin:0;padding:0;background:#fff;}
	    #postexcerpt .inside p{padding:0px 0px 5px 10px;}
	    #postexcerpt #excerpteditorcontainer { border-style: solid; padding: 0; }	
</style>
<?php }
add_action( 'admin_head-post.php', 'tinymce_css');
add_action( 'admin_head-post-new.php', 'tinymce_css');

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 te ha gustado este fragmento de código, por favor, considere la posibilidad de revisar nuestros otros artículos en el sitio como: 7 mejores servicios VPN para usuarios de WordPress y cómo crear un formulario de solicitud de empleo en WordPress.

Comentarios   Deja una respuesta

  1. This doesnt work in WP 5.5.1
    Is there something we need to update?
    Thank you!

  2. sen ne d?yorsun bree orospuu cocugu

  3. Adam Christianson agosto 11, 2014 en 1:33 pm

    I’m experiencing the same issue since updating. Is there an updated version of this function that might fix things up again?

  4. Same problem here! Was working before update but now it’s gone! Thanks!

  5. It was working before however after updating the tinyMCE its gone ???

  6. Appreciate the code and just added to local WP site I am updating and seemed to work great so far. Thank You!

    1. Perfect! Glad wpsnipp could help… Enjoy the code.

  7. Kevin Donnigan enero 30, 2013 en 6:56 pm

    Life saver! Thank you so much 🙂

  8. it EATS the line breaks…

  9. hi kevin,
    i added this snippet to my functions.php file but the editor doesn’t show. i’m using the pagelines framework. could it be because of that?

  10. thx! handy without installing a giant plugin. Only one little issue: when you have a custom post type without any editors, the tinyMCE init runs anyway causing all js to break. with an extra check it works smoothly:

    ..
    if (typeof(tinyMCE) !== ‘undefined’) {
    tinyMCE.execCommand(“mceAddControl”, false, “excerpt”);
    }
    ..

  11. thx ! helped me a lot !

    1. Cool glad that I could help enjoy!

  12. Jonathan Mills enero 13, 2012 en 1:15 pm

    any update on this? (this is mroncetwice btw)

  13. thanks! exactly what I was looking for 🙂

    1. Cool glad I could help Birgit,

  14. WP 3.3  messes this function up royally .. when you leave a write page set to the HTML tab, upon returning to any of the write pages where this function is active, clicking back to the Visual tab brings up a blank textarea (not actually blank, but appears so as text is colored white). i see a lot of suggestions to use 
    do_action(‘edit_page_form’) 
    instead, but im not sure how do go about such a function. 

    any plans to update this function for use with WP 3.3?

    1. I have not tried this snippet in wp 3.3 could be a number of things ill take a look and post an updated version for 3.3 and let you know what if any issues may have caused this for you.

  15. 29 Wordpress Tweaks to Improve Posts and Pages octubre 18, 2011 en 9:11 am

    […] [Source: WPSNIPP] […]

  16. Is there any way to display tabs for switching between Visual and HTLM?

    1. Hi Jacek, a few people have requested this addition, ill have to look into it and see.

  17. Thanks Kevin for this snippet.
    Do you know how add the media buttons to the top ?
    Sorry for my bad English
    Thanks
    Anne

    1. No problem Anne, glad that you like the snippet. In regards to media_buttons, ill have to check that out not sure if this can be done easily. If so ill post a snippet.

  18. How would I add this to the Additional Description field of WPEC ?

    1. To add this to another field you would need to the ID of the field. On row 05 you can see #excerpt if you change that to the ID of the other textarea should work great. Please also note that I added some CSS on lines 14-16  to style things a little. You should remove that css and replace it with your own to make sure everything looks ok.

      1. Brilliant! So for any other WPEC/WPSC (wp E-commerce) folks out there want to get this to work for the “Additional Description” section, then just change the ID #excerpt in the above function to #additional_description and change the class that is being added from “mceEditor” to “theEditor” and all will work!

        Thanks Kevin for the great help.

      2. Kevin, any idea how to add the visual/HTML tabs to the top of the excerpt?

        1. To be honest I’m not sure, this not something I have ever thought about doing until you asked the question however, it is an interesting idea. ll take a look into this and see if I can come up with a snippet that I can post.

  19. This is great — except, my line break/paragraphs aren’t preserved.  So after an update the excerpt appears as one long line again.  Is there an easy way to preserve paragraph breaks?

    1. Hi Gary ill test that out and get back to you,

      1. Hi Gary,
        I looked things over again and it should be working it breaks line breaks into paragraphs so it should be working fine. Do you have any other code that is doing something to the_excerpt ?

    2. I second that experience. But when viewing the content the paragraphs are there.

      I am more interested in learning how to include images. If you have the time, drop me a line at [email protected] with a solution.

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!