WordPress: How to Enhance the Visual Editor With Custom Formats
Would you like to use custom formats in the visual writing editor of WordPress? Good idea, as adding styles gets you a lot of advantages. You can use your elements without having to change into the text mode. Thus, in this article, we’ll show you how to extend the editor with custom formats.
The visual editor of WordPress is a neat thing. The most important formattings can be removed with a single click. You can enrich and structure your articles with elements. However, it ‘d be good if the editor had a few more functions.
There certainly are a lot of plugins on the market that extend the editor with shortcodes. But do you really need them all? Or are a few elements like pretty buttons, for example, enough? This wouldn’t slow your website down unnecessarily.
Of course, you can already switch into the text mode at any time to add your formatting. But user friendliness looks different.
WordPress: Adding Own Styles to the Visual Editor Without a Plugin
Using own styles also means that we have to touch WordPress files. The additional code that we will create in a bit either goes into the functions.php of the active theme or into a custom site plugin. I recommend the latter.
1 – We Create an Own Menu Item in the Editor
The following code creates an additional drop-down menu in the visual editor. The menu will give you the option to be able to choose and use your own styles.
View the code on Gist.
2 – Creating the Options That Can be Chosen
Now, we need to set up the options that we want to add to the dropdown menu we just created. Afterward, you’ll be able to use these formats. For this tutorial, we’ll choose three buttons which we will get to use subsequently.
View the code on Gist.
3 – Creating the Necessary CSS for the Buttons
The buttons are already usable. You can try it by setting up a new article, and then using the new function. However, the buttons don’t look like buttons yet; a little CSS is needed for that.
Copy the CSS into your theme’s style.css, or create an own stylesheet for it.
View the code on Gist.
4 – We Still Need a CSS for the Editor
For us to be able to see the correctly formatted buttons in the visual editor, we need an editor-style.css.
Most of the time, you’ll find the file within your theme’s root index, or within a folder named CSS. If there is none yet, I recommend you set one up now. That’s not really difficult. Simply create an empty CSS file named editor-style.css
using an HTML editor.
Now copy the CSS from item three into the new stylesheet and save. Move it into your theme’s main index. Now, all you need is a small PHP function that calls up the new stylesheet for your editor.
Noupe: The 9 Best Free HTML Editors for Web Developers (Windows-Edition)
View the code on Gist.
The Final Result: Our New Buttons
The new buttons are very easy to use, and only one mouse click away when writing a new article.
In the Tiny MCE Editor, the formatted buttons will now look pretty:
The same thing can be seen when using them within an article.
How to Use the New Buttons
As we’ve set up the buttons using rather simple methods, you are not able to use a comfortable generator. Nonetheless, the new buttons controls are pretty easy. Just write the button text into the editor, mark the text, and then click on the new menu item “formats.” Pick the button of your choice.
Now, you’ve created a colored button. For a link, mark the button text again, and implement the link.
Adding Other Elements – Made Simple
You can add other elements whenever you want to. Maybe, you are just like me and you use the code tag more than once? Or you want to create a colored box for highlighted text? No problem, the screenshot shows you what to alter in the PHP code of item two.
Adding Custom Styles is This Simple
All you need to do is make sure to copy the entire array and place it below an existing one. In the screenshot, I marked the beginning and the end of the array. The green brackets mark the area.
Using a Plugin for This Job
Of course, you could also use a plugin when you work with own styles a lot. We have already presented one of the most interesting plugins for own styles and shortcodes. Developers will also like this extension, as there is barely anything that you couldn’t create and use.
Noupe: Post Snippets for WordPress – You Need This Plugin!
Conclusion
We’ve found a great way to comfortably use custom formats in the WordPress editor using simple means, and without slowing down our WordPress with a bloated plugin. I’d like to hear what you’ve been able to realize with this method, so feel free to comment.