Created
March 4, 2012 07:15
-
-
Save BronsonQuick/1971101 to your computer and use it in GitHub Desktop.
Add back the Superscript button in the TinyMCE editor in WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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