By Matt Visiwig Sep 2, 2021
Quickly, let me demo the branded CODE blocks I made:
<!-- This is how HTML markup looks -->
<div id="welcome-msg">
<p>Hello World</p>
</div>
TL:DR; Skip to the solution
I started doing research on how to add syntax highlighting to my WP blog tutorials, it was a bit more complex than I first realized.
There are many libraries to handle prettifying code on webpages and there are limitations to how you write code into the WordPress editor.
I needed an easy way to:
Chris Coyier wrote an older post about how you’ll need to disable the visual text editor on WordPress if you’re going to write code on your blog posts often. But after trying that out, I realized I wanted to see everything styled, from headers to images as I wrote and revised my content. I wanted an enjoyable blogging experience.
I nearly ruled out Gutenberg blocks as I have avoided the new editor since its launch. Despite testing Gutenberg out on three separate occasions, I’ve always reached for the classic editor plugin. But this time was different. I was actually going to be blogging and not simply creating page content. Gutenberg began to look more attractive, so I tried it for a fourth time.
Gutenberg had definitely been fleshed out since I last tried it. It was a generally smooth experience. When I first tried the CODE block, the results weren’t optimal and I had some weird results. I thought it was a dead end and that I would have to create a custom solution. At the same time, I didn’t want to waste a lot of time on this non-critical task. I ruled out creating a custom solution.
I tried making Gutenberg CODE blocks work and I ended up finding a few tools that made this work reasonably well.
The setup is straightforward:
The great thing about this setup is there is no special WordPress addon needed. As long as you have Gutenberg, the default editor, you are ready to proceed. The classic editor plugin disables Gutenberg, so you will have to disable that plugin before moving on.
To get PrismJS to work, you’ll need to link to both a JS file and CSS file. Head over to the PrismJS website and click download. You’ll be presented with an overwhelming screen of options. Here is what you want:
The thing that sold me on PrismJS was the ability to create my own theme and colorize the code how I wanted. Even better, you can use this syntax highlighting theme builder to create it visually and quickly. After you play around and select your desired color highlighting, click the “Download CSS” button in the bottom right corner. We’ll use this downloaded file in the next step.
In the last two steps you downloaded a JS file from PrismJS and a CSS file from the theme builder. Now we need to host these files to make use of them. I’m not going to go into detail about how to upload your files, but will note, an easy way is using an FTP client like Filezilla. You’ll likely want to keep these files with your theme. This may mean creating a child-theme, or if you built your own WP theme like me, adding the files to a /js/
and /css/
directory within your theme structure is ideal. Alternatively, the easiest spot to place your files is in the root of your website, but keep in mind this isn’t a good practice.
Now that we are hosting the files, we need to include these files on the front-end of your website. You need to know the path (location to your file) and file names.
<link href="/path/to/your/file/prism-theme.css" type="text/css" rel="stylesheet">
<script src="/path/to/your/file/prism.js" type="text/javascript"></script>
You’re going to want to place this in the <head> or <body> of your webpages. If you’re not working with PHP template files or don’t have the general know-how, a popular way to add these tags is to use an insert header and footer plugin.
If you successfully followed these previous steps, our code blocks should be ready to work.
Let’s test it out!
language-markup
for HTML code and language-css
for CSS code. You can find your specific class alias in the PrismJS docs.Fingers crossed! That should work.
Unfortunately sometimes things go wrong. It took me a few tries. Here are a few things I would check to figure out what is preventing your syntax highlighter from working.
<pre>
that wraps a <code>
.language-js
. If not, this is a sign that there is a typo or that the PrismJS files are not loading.<style>
tags.src=""
and href=""
of those JS and CSS file links. If they don’t lead to code, the path is wrong or the files don’t exist on your server.The theme builder UI made colorizing the syntax a cinch, but if you want to take this to the next level, you can also format the code even more using CSS. I did things like make sure my font-size
and padding
system for the blog content worked alongside the new code block.
Now that you’re set up, you’re good to go. There’s not much to it, just remember to add the class each time you use the code block, or the PrismJS file won’t target and style your code snippet.
Here is a before and after:
<!-- without style -->
<p>A paragraph</p>
<!-- with custom style -->
<p>A paragraph</p>
Down the road, if you find you need support for other languages, you can hop back to the PrismJS website to download the new languages.
Let me know how it goes! Share your results with me on Twitter @MattVisiwig
Hey, I'm Matt , the creator behind SVG Backgrounds. I produce free and paid resources every month, sign up for alerts.