Are you looking for a way to add subscript and superscript buttons to WordPress editor? While there’s probably a plugin for this, we have created a quick code snippet that you can use to add subscript and superscript buttons to editor.
Instructions:
All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:
function enable_more_buttons($buttons) { $buttons[] = 'sub'; $buttons[] = 'sup'; return $buttons; } add_filter("mce_buttons_3", "enable_more_buttons");
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 20 best WordPress church themes for expanding the flock and how to start a blog.
When I try this I get “syntax error, unexpected end of file”
You may want to check that the whole snippet was copied.
Be sure to check out: https://www.isitwp.com/properly-add-code-snippets-wordpress-site/
It is not working with the Elementor’s editor
Sadly this snippet is not designed to work with Elementor and will most likely only work with the classic editor.
This no longer seems to work. Any idea why?
Commented this elsewhere, but just incase:
For Anyone looking at this using WordPress on a version later than 3.9 that has TinyMCE 4 the function above won’t work, this is because WordPress and TinyMCE changed ‘sup’ to ‘superscript’ and ‘sub’ to ‘subscript’ – If you make those changes in the code above it will work fine!
I am getting a Missing argument 1 for enable_more_buttons() error
you saved my day man
thanks fot tip
Just what I was looking for!
When I add it, I get a
Fatal error: Call to undefined function add_filter()
Perfect little piece of code! Works brilliant. Thanks a lot!
No problem glad that I could help!
thanks guys. i was working with a PhD client today who writes research
reports and it was necessary for her to sup and sub references. this
was key.
Perfect Jerry glad to hear you got things working well.
(text translated by the program)
Thank you for providing this code, but no need to repeat the array code, simply separate the items in the array
function enable_more_buttons($buttons) {
$buttons[] = ‘sub , sup’;
return $buttons;
}
add_filter(“mce_buttons_2”, “enable_more_buttons”);
This is true, I just find this method easier to read. Thanks for the input though people will find this very useful.