Is there a plugin to show the code tag button on the visual editor?

I write a programming blog, so sometimes I just have to write a word to represent a command or function which I like writing between the code tags. (See, what I just did there).

So, just like StackExchange has the “code” button, is there a plugin to add this button to the visual editor? I know I got it on the HTML editor, but I rarely use it.

Read More

I was thinking of writing a plugin for this, but just in case I’m asking first in case anyone knows of a plugin doing this already.

Related posts

Leave a Reply

3 comments

  1. I haven’t tested this code, but I think it should work:

    add_filter('mce_buttons','rw_mce_buttons');
    function rw_mce_buttons($mce_buttons) {
        $mce_buttons[] = 'code';
    
        return $mce_buttons;
    }