How do I enable people to spell check their comments?
Adding the ability for your readers to check the spelling of their comment text has never been easier, though it may reduce your enjoyment of their inadvertently incorrect spellings. Simply modify your comments template to call the following function somewhere within it (this inserts the necessary Javascript for opening the spelling checker window): ‘spellinsertheaders();’ For default WordPress installations, you need no parameters. If for whatever reason your textarea is a different id than the default “comment” id, you can specify that id as a parameter to this call, for example: ‘spellinsertheaders(“differentcommentid”);’ Now, the only thing left to do is insert the following code where you want the “Check Spelling” button to appear: ‘spellinsertcomment_button();’ For more flexibility you can specify the following parameters to this function: • $button_class – If so desired, you can apply a class specifier to the resulting button. Leaving this as the default causes no class to be sp
How do I enable people to spell check their comments?