I’m sure we’ve all seen this at least once. Maybe it’s the aftermath of a poorly estimated project charging right towards a deadline. Or perhaps it stems from a quick fix at eight in the evening from an overworked developer. It might even be the client’s attempt at re-gaining control of his own site no thanks to the suspiciously cheap development he paid for overseas.
Either way, it’s a bad idea no matter the reason. What am I talking about? I’m talking about HTML and inline styles in the WordPress text editor. Bad, bad, bad!
Feel guilty yet? No worries, I’ve been there. And learning from my own mistakes, I’d like to share a few reasons why this practice should be avoided. Then I’d like to offer some solutions to keeping code out of the WordPress text-editor and instead, leaving it where it’s safe within the theme templates.
Doesn’t WordPress Natively Allow HTML?
First, of all, what’s with leaving code out of the text-editor? Doesn’t WordPress already let us put HTML in the text-editor? What’s the difference between WordPress HTML and our own?
[Tweet “What HTML does #WordPress support out of the box in the text-editor?”]
Let’s go over what WordPress’ text-editor currently supports first out of the box. WordPress’ text-editor is powered by Tiny MCE. Some of the options currently supported in WordPress 4.0 that insert HTML into the text-editor from the visual tab are:
Bold:
<strong>Bold</strong>
Italic:
<em>Italic</em>
Strike-through:
<del>Strike-through</del>
Underline:
<span style="text-decoration: underline;">Underline</span>
Font-Color:
<span style="color: #3366ff;">Font-Color</span>
Ordered and Unordered Lists:
- Pancakes
- Waffles
- Crepes
- Pancakes
- Waffles
- Crepes
<ul> <li>Pancakes</li> <li>Waffles</li> <li>Crepes</li> </ul> <ol> <li>Pancakes</li> <li>Waffles</li> <li>Crepes</li> </ol>
BlockQuotes
<blockquote>BlockQuotes</blockquote>
Aligning styles for:
Align Left
Align Center
Align Right
<p style="text-align: left;">Align Left</p> <p style="text-align: center;">Align Center</p> <p style="text-align: right;">Align Right</p>
<a href="http://www.w3schools.com/tags/tag_a.asp" target="_blank"> Links:</a>
Headings:
<h1>H1 Heading</h1> <h2>H2 Heading</h2> <h3>H3 Heading</h3> <h4>H4 Heading</h4> <h5>H5 Heading</h5> <h6>H6 Heading</h6>
There are more options in the visual text-editor, but for the sake of moving on, let’s just use these examples above. No, you are not seeing things, WordPress is inserting HTML into the text-editor. However, what it’s inserting is basic HTML used for formatting text only. Meaning anything design-related aside from text color is non-existent. No background images, no rounded edges, no divs and no classes/IDs.
There must be a reason for that. One can only guess, but my hunch says the reason that the text-editor only offers these straight forward HTML options are because anything more complex would go against WordPress’ philosophy:
Design for the Majority
…The average WordPress user simply wants to be able to write without problems or interruption…Decisions, not Options
…Ultimately these choices end up being technical ones, choices that the average end user has no interest in….
If you get a chance to read those entire paragraphs on the WordPress philosophy page, the point is that WordPress is intended for the average user, and therefore, that’s who they built the software for. Ideally this is also who we, as WordPress developers, should be building for. So in most cases, having all of these extra bells and whistles in the text-editor does little, if not nothing, to benefit the average user.
Which brings me to my next point…
Why Should We Avoid Putting HTML in the Text-editor?
We’ve already gone over the WordPress philosophy, but there are other, more obvious reasons.
- To future-proof your site for development
- To keep it out of the client’s hands
The first reason, is future-proofing. What I mean is building a WordPress theme while keeping the future “what ifs” in mind, and preparing for those what ifs. What if a new developer inherits this project that knows nothing about it? What if the client changes themes? What if the site moves to another server? What if the client removes xyz from the text-editor?
Imagine all the ways your WordPress site can break if you’re putting a bulk of design dependent HTML into the text-editor, heck, you might even be using IDs being referred to from a script file. If breaking the site is as easy as messing with the text-editor – that’s what you want to prevent at all costs. You’ll thank yourself later.
[Tweet “Content management shouldn’t be hard to manage. #WordPress”]
The second reason is since WordPress is intended for the average user, keep it simple. Anything extra that the client has to remember to do or not to do is just going to make content management difficult, the opposite of WordPress’ purpose as a CMS. Not to mention, should you trust sensitive code in the hands of your client? Even if your client happens to be a code monkey, a WordPress theme is meant for your HTML and CSS loveliness. Why clutter the text-editor if you don’t have to? Your client will also appreciate less obstacles in the text-editor – and we aim to please, right?
Now to my final point…
How Can We Avoid HTML in the Text-editor?
Unfortunately, this isn’t a simple answer. It really depends on the project, the budget, how much experience the developer has and so on. Ultimately, you want to develop a mindset where building a theme and usability go hand in hand. That mindset is achieved by experience and is an ongoing process. Until this day, I’m still discovering new and better ways to build WordPress themes while maintaining a clean dashboard.
Although I don’t have all the answers, here are some suggestions that have helped me keep the text-editor HTML/CSS free:
- Learn to write Shortcodes. If it’s a simple style or wrapper that your client will use often, Shortcodes are a great way to allow that freedom without them having to remember syntax.
- Custom Fields or plugins that enhance custom fields like ACF/Magic Fields. Maybe all your content doesn’t have to be in the text-editor. Think about it. If you needed to separate the content within the text-editor, how would you do it? Once you know that answer, these fields can assist you in separating that content into their own text-editors/text-fields where you can then have finer control in your theme templates.
- Creating new loops or editing existing ones. You can use custom post types that get pulled into a main loop. You can create a page template for a parent that displays it’s children with get_post or get_children. There are many ways to take advantage of loops, you’ll just have to practice. 🙂 Here’s an older article of mine that teaches how to call child pages within a parent.
- Use your theme’s stylesheet. Once you understand what WordPress’ text-editor offers, think about how you can take advantage of that using the CSS in your stylesheet rather than adding new HTML/styles directly into the editor.
Conclusion
You can usually tell a novice developer from a seasoned one by whether or not there’s a chunk of custom HTML in the text-editor. It’s really a matter of knowing what WordPress is capable of, and this is still something I’m learning everyday. Keeping the text-editor clean will future-proof your site from breaking and will improve UI for your client.
I hope that I’ve at least helped you on your way, and if you have any suggestions to offer or questions on how to keep the text-editor as HTML free as possible, feel free to leave a comment below. Until next time!
PS: My web accessibility series for WordPress will start up again soon. Stay tuned!

Leave a Reply