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.

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.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 3 down vote accepted

There seem to be a few people scratching this itch over at the TinyMCE sourceforge tracker. http://sourceforge.net/tracker/?group_id=103281&atid=738747

This looks promising.. "CodeExtras adds <var> and <code> markup buttons - ID: 2904557" http://sourceforge.net/tracker/?func=detail&aid=2904557&group_id=103281&atid=738747

link|improve this answer
2  
You could also add the code tag to the blockformats dropdown like in the example here. tinymce.moxiecode.com/wiki.php/… – MirlitonMedia Jan 25 '11 at 1:31
1  
It is such a small edit, that it could be overkill to search for a plugin to do this. Just add the <code> tag to the blockformats dropdown and be done with it. – Jan Fabry Jan 26 '11 at 10:04
feedback

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;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.