Skip to content

Instantly share code, notes, and snippets.

@BronsonQuick
Created March 4, 2012 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BronsonQuick/1971101 to your computer and use it in GitHub Desktop.
Save BronsonQuick/1971101 to your computer and use it in GitHub Desktop.
Add back the Superscript button in the TinyMCE editor in WordPress
<?php
/* Add back the superscript TinyMCE button in WordPress */
function sennza_add_more_buttons( $buttons )
{
$buttons[] = 'sup';
return $buttons;
}
add_filter( 'mce_buttons_3', 'sennza_add_more_buttons' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment