X

Ativar o TinyMCE Editor para Post the_excerpt

Snippets by IsItWP

Deseja adicionar o editor TinyMCE à área de texto do trecho da postagem? Embora provavelmente exista um plug-in para isso, criamos um trecho de código rápido que você pode usar para ativar o editor TinyMCE para o post the_excerpt do WordPress.

Instruções:

Tudo o que você precisa fazer é adicionar este código ao arquivo functions.php do seu tema ou em um plug-in específico do site:

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');

Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como adicionar corretamente trechos de código no WordPress, para não danificar seu site acidentalmente.

Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 7 melhores serviços de VPN para usuários do WordPress e como criar um formulário de solicitação de emprego no WordPress.

Comentários   Deixe uma resposta

  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 em 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. 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. 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 outubro 18, 2011 em 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. Björn Sennbrink setembro 6, 2011 em 11:13 pm

      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.

Adicionar um comentário

Ficamos felizes por você ter optado por deixar um comentário. Lembre-se de que todos os comentários são moderados de acordo com nossa política de privacidade, e todos os links são nofollow. NÃO use palavras-chave no campo do nome. Vamos ter uma conversa pessoal e significativa.

WordPress Launch Checklist

A lista de verificação definitiva para o lançamento do WordPress

Compilamos todos os itens essenciais da lista de verificação para o lançamento de seu próximo site WordPress em um ebook prático.
Sim, envie-me o livro eletrônico gratuito grátis!