How To Show Code in WordPress (and Make It Glance Beautiful)

by | May 10, 2023 | Etcetera | 0 comments

Studying learn to display code in WordPress is the most important for bloggers and content material subject material creators who consistently put up code online for their readers to use. Laptop code, by the use of design, renders something new on the frontend of a internet web page rather than the tags, slashes, and brackets you to find inside the true code snippets.

This, on the other hand, poses a subject for those writing about development and design, since you wish to have a solution to appropriately display the code without it doing its exact task, like creating a button or together with styling to a paragraph block.

Simply put, if you happen to write a blog submit and put a code snippet example in there, you’ll need to prevent the code from if truth be told running! This manner, readers can see the code in its raw form, view the code in a successfully formatted block, and even copy its contents to use in their development art work.

In this knowledge, we’ll show you exactly learn to display code in WordPress (regardless of your WordPress theme) the use of quite a lot of different methods, and we’ll help you decide which way works best on your workflow.

Table of Contents

What Happens When You Add Commonplace Code in WordPress?

Chances are high that you’ll wonder what would happen if you happen to wrote some code into the WordPress visual editor. In the end, you’re no longer messing with the text or code editors, so shouldn’t your code snippet art work merely fine?

Most likely no longer.

Dull code snippet not more 🪄 Spice it up with those smooth steps! 👀Click on to Tweet

Listed here are one of the crucial strange results that may occur:

  • The code in part turns out, with bits of coding showing on the frontend of the submit and others disappearing. This seems unprofessional to visitors; it approach your code isn’t proper.
  • Now not the rest the least bit shows up, with the code utterly vanishing from sight on the backend and no longer showing the remainder on the frontend of your submit.
  • You understand ordinary formatting — incessantly something that’s no longer user-friendly or publishable for an audience.
  • The code would possibly best possible in part render

For example a couple of the ones results, we’re going to use the following HTML code snippet:





.cities {
background-color: green;
color: white;
border: 4px forged black;
margin: 10px;
padding: 10px;
}



Chicago

A nickname for Chicago is The The town of Huge Shoulders.

Los Angeles

A nickname for Los Angeles is The The town of Angels.

New York

A nickname for New York is The Large Apple.

This particular code snippet makes use of HTML styling components to offer 3 green content material subject material blocks with headers and paragraphs.

Click to Write Code and display WordPress code
Click on directly to Write Code

However, we’d love to turn the raw code in a blog submit, no longer have it if truth be told render into those blocks.

Listed here are the effects if we paste the code at once into the WordPress Gutenberg Block Editor:

Gutenberg results to display WordPress code
Gutenberg Editor results from HTML code

As you’ll be capable to see, WordPress tries to use the code for its main serve as: to generate content material subject material — but it surely strips the code of its styling, so it doesn’t provide the finish outcome we had to flip to the readers.

To avoid situations like this, we encourage you to as a substitute use one of the crucial methods listed underneath to turn code.

How To Display Code on Your WordPress Web page (6 Methods)

The ones methods are listed from highest to most tricky, and we’ve were given some specific methods for many who experience writing code and content material subject material in markdown editors (as opposed to WordPress).

Means 1: The usage of the Gutenberg Block Editor (Default)

To use appearing code in WordPress, you’ll be capable to use the following code snippet, which makes use of HTML and inner CSS to offer a smooth finish outcome with one blue header and one black paragraph:





body {background-color: beige;}
h1 {color: blue;}
p {color: black;}



A laugh Data About Otters

A bunch of otters in water is known as a "raft," since they all link arms to stop from floating away.

When put into movement, the code shows this on the frontend:

HTML code showing fun facts about otters
Results show a establish and body text with styling

On the other hand by the use of following this tutorial, you’ll learn to display the raw code itself, no longer what the code is supposed to show on the frontend.

Step 1: Add a Code Block in WordPress

The WordPress Gutenberg editor already has a built-in Code block, which helps you to display snippets of code without shedding any of its formatting or if truth be told activating the code.

To start out out, open a publish or web page in WordPress, then click on on one of the crucial Add Block buttons.

add block buttons
Add Block buttons

Click on on one of the crucial Add Block buttons

This unearths the choice of blocks available. You’ll search for the Code block or kind a keyword like “code” into the search bar.

If you happen to see the Code block (with brackets icons), click on on on that to insert a work of code into the submit.

popup window to add a block, with Code block option
Popup window to be able to upload a block, with Code block chance

You’ll have to now see a field with the prompt “Write code…”.

Click to Write Code

The WordPress Gutenberg editor is helping markdown, so that you’ll be capable to moreover find and insert the Code block by the use of typing a forward slash (/) into the editor, then get began writing “C” or “Code”. WordPress will then show all comparable blocks, providing you with a quicker solution to insert them.

It’s clean to confuse the Code block and the Custom designed HTML block. However, the Custom designed HTML block is for together with custom designed HTML to render on the frontend, no longer for together with raw code for display.

using markdown to call the Code block
The usage of markdown to call the Code block

Step 2: Paste Display Code Into Code Block Field

Now it’s time to duplicate the code you’d love to turn and paste it into the sector that says, “Write Code…”.

Write or Paste in Code to Display
Write or Paste in Code to Display

Your code now turns out inside the box.

What’s great regarding the Code block is that it respects all spaces and tabs you already had right through the code snippet. Because of this, it shouldn’t look some other from the availability you copied it from.

Pasted Snippet in the Code Block to display WordPress code
Pasted Snippet inside the Code Block

Step 3: Put up and View Results

To turn your code for your WordPress submit or internet web page, finish the process by the use of clicking on the Put up button.

You’ll moreover get an idea of what it seems like previous than publishing by the use of settling on Preview.

Click Publish to display WordPress code
Click on on Put up

If you happen to’ve hit the Put up button, talk over with the are living fashion of that submit to confirm your code chunk is appearing as raw code.

See also  Is it Conceivable to Construct a Static WordPress Web site?

As you’ll be capable to see, the Code block is reasonably smooth, but it surely certainly provides essential capacity for maintaining formatting when publishing code on blog posts.

Take a look at the underneath screenshot. In our example correct right here, now not the rest has changed from the original code snippet; it has simply been presented on the frontend in a grey box.

Displayed WordPress Code on the Frontend
Displayed Code on the Frontend

Step 4: Believe Formatting the Code Block

To make the Code block stand out a little bit bit, think about changing its glance from the default.

To turn styling possible choices for the block, make a choice the Code block, then make a selection the Settings (equipment icon) button. This opens the Block tab, which best possible shows the Block settings on your determined on block — in this case, the Code block.

Go to Block Settings for Code Formatting and to display WordPress code
Go to Block Settings for Code Formatting

You’ll stylize the Code block on the other hand you wish to have, with possible choices to switch things like text and background colors.

Edit Color and Background Settings
Edit Color and Background Settings

You’ll moreover:

  • Exchange the size of the text
  • Add padding and margins to the code box
  • Include a border with a custom designed width and color
Settings for size, dimensions, and border
Settings for period, dimensions, and border

As at all times, click on on on the Put up button when you’re carried out enhancing the block, then view the effects on the frontend of your WordPress publish.

Frontend Results to display WordPress code
Frontend Results

Means 2: The usage of a Plugin

Another way to turn code on WordPress is by the use of putting in a plugin.

This system would possibly seem a little bit bit redundant bearing in mind that WordPress already has a built-in Code block, then again some plugins offer additional choices and formatting tools to make running with a plugin successful. In short, you’ll be capable to make your code blocks prettier than what you’d get with the standard Gutenberg Code block.

In addition to, some Antique WordPress Editor consumers would possibly find partering with a plugin easier, as it’s a little bit bit trickier to turn code inside the Antique Editor.

To start out out, you’ll have to make a selection a “syntax highlighter” plugin, which is a fancy means of saying that the plugin will highlight your provide code and keep its formatting intact.

Listed here are some revered plugins for appearing code on WordPress:

We’ll use the Enlighter plugin in this tutorial as it provides possible choices to tag which varieties of code you display for your code boxes, together with many alternative styling choices. However, you’re more than welcome to take a look at out the others, as they all maximum repeatedly do the identical issue.

Step 1: Arrange a Syntax Highlighter Plugin

Arrange the Enlighter – Customizable Syntax Highlighter plugin for your WordPress internet web site the use of your hottest plugin set up manner.

After activation, the plugin is in a position to insert code into any submit/internet web page with a Gutenberg block or Antique Editor Insert button.

The Enlighter Plugin to display WordPress code
The Enlighter Plugin

Step 2: Insert the Enlighter Sourcecode Block Proper right into a Publish

Should you’re the use of the WordPress Gutenberg Block Editor, open a submit during which you’d love to turn code. Click on on one of the crucial Add Block (+ icon) buttons to show the choice of blocks available.

Browse or kind in a keyword for the Enlighten Sourcecode block. Click on on on that block to insert it into the submit.

Enlighter Sourcecode Block to display WordPress code
Enlighter Sourcecode Block

Step 3: Paste Code into the Syntax Highlighter Block

The Enlighter Highlighter block then shows up inside the Block Editor, with a establish for “Generic Highlighting” and a field to “Insert Sourcecode…

Take regardless of code you’d love to turn on WordPress and paste/kind it into the “Insert Sourcecode…” field.

Use the Insert Sourcecode Field
Use the Insert Sourcecode Field

As a syntax highlighter, the plugin preserves all formatting imaginable possible choices and tabs. If you happen to’re pleased with the end result, click on on on the Put up button.

Click Publish to display WordPress code
Click on on Put up

Step 4: Preview Code on the Frontend

With that, you’ll be capable to view the frontend of your submit to appear what internet web site visitors see.

The Enlighter plugin provides a minimalist default theme for code display, with line numbers to help with crew and referencing.

display WordPress code on frontend
Displayed on Frontend

As we mentioned, the use of a plugin to turn code on WordPress does have its advantages over the other methods. For instance, the frontend fashion of the Enlighter syntax plugin highlights traces since the individual scrolls over your code.

Highlighted lines of code
Highlighted traces of code

There are also quite a lot of buttons inside the upper-right corner of the code box, at the side of one who items the code in plain text, without the street numbers.

Plain Text button
Easy Text button

The second button is known as Copy To Clipboard, which straight away copies the whole thing right through the code box to the individual’s clipboard, which they are able to take and paste into any program they’d like.

Copy To Clipboard button
Copy To Clipboard button

After all, the 1/3 button opens the code in a brand spanking new window, presenting it in a definite text fashion of your browser window.

Open Code in New Window
Open Code in New Window

Step 5: Set Language and Line Settings for Code Box

The Enlighter plugin comes with rather numerous subjects and powerful customization tools to make the code box look on the other hand you wish to have. Should you’d rather no longer use the default theme, go back in your submit inside of WordPress and click on on on the in recent years open Enlighter Sourcecode block.

This unearths the Block sidebar in WordPress. If it doesn’t appear, make sure you click on at the Settings (equipment icon) button inside the top-right corner of the WordPress window.

The main setting to customize is the Language field — this tells the plugin which code language is displayed so it will most definitely offer the correct formatting and highlighting.

Language field
Language field

There are relatively a few coding languages to make a choice from, so scroll at some point of the tick list and make a selection the one that’s most appropriate.

Picking the language
Settling on the language

The Speciallines field highlights any traces you specify. To make this happen, kind in line numbers separated by the use of commas.

Special lines
Specific traces

Because of this, internet web site visitors see highlighted traces for all of the ones you specified.

Lines highlighted on the frontend
Lines highlighted on the frontend

The Lineoffset field is a solution to get began your coding snippet at a decided on numbered line, which is really helpful if you happen to’re best possible appearing a subset of code that’s part of a larger choice of traces.

Lineoffset field
Lineoffset field

As you’ll be capable to see, typing 10 into the Lineoffset field starts the entire code box at the amount 10.

Start document on specific line
Get began document on specific line

Step 6: Make a selection a Theme

The Enlighter theme is the default theme from this plugin. However, the Theme field (nevertheless underneath the Block settings panel) items quite a few built-in subjects to select.

Theme options
Theme possible choices

For instance, the Godzilla theme displays code as regardless that it were on top of graph or drafting paper.

The Godzilla theme
The Godzilla theme

And the Atomic theme switches the background to a dark theme while offering principally white text and crimson coloring for code tags.

Atomic theme
Atomic theme

Every other example is the Antique theme, which is a far much less minimalistic fashion of the Enlighter theme with brighter colors and further defined traces.

Classic theme
Antique theme

Step 7: Believe Building a Custom designed Theme

The Enlighter plugin provides a tab inside the WordPress dashboard for customizing every facet of the plugin and its highlighting choices.

To succeed in entire control over the design and display of your code boxes, transfer to the Enlighter tab ( icon), then make a selection Glance or Theme Customizer.

Theme Customizer
Theme Customizer

The Glance tab lets in you to make a choice a regular theme while moreover providing you with get right to use to keep watch over elements like:

  • Code indentation
  • Text overflow
  • Linenumbering
  • Line-hover affect
  • RAW-Code on doubleclick
Appearance section of theme customizer
Glance section of theme customizer

The Theme Customizer section includes a long tick list of tabs for development a code highlighter theme from scratch, with possible choices to keep watch over buttons, expressions, languages, and further.

Additional settings
Additional settings

Bonus: The usage of Enlighter With the Antique Editor

The Enlighter plugin works reasonably different for those nevertheless the use of the Antique WordPress Editor.

If you happen to’ve put within the Enlighter plugin, transfer to any submit or internet web page and find the Enlighter Code Insert button inside the control panel of the editor.

Enlighter Code Insert
Enlighter Code Insert

This brings up a brand spanking new window referred to as Enlighter Code Insert.

Paste the code you’d love to turn inside the massive (unlabeled) field at the bottom.

Paste the code
Paste the code

Click on at the dropdown menu from the Language field to choose the proper coding language.

Pick a language
Make a selection a language

If you happen to’re carried out, click on on on the OK button. You’ll moreover make adjustments to the other choices in that window, like together with line indentation.

See also  New Starter Site for Estheticians (Quick Install)
Example of line indentation
Example of line indentation

Click on at the Put up button for the submit, then view the effects on the frontend. The default code box for the Antique Editor is a dark theme, then again you’ll be capable to exchange the appearance of your code box and even assemble your individual subjects.

Published version
Published fashion

Means 3: The usage of an Encoder Software

Encoder tools serve as selection possible choices when having a look to turn code in WordPress, in particular if you happen to don’t intend to do it that incessantly (and would rather no longer mess with a plugin).

HTML encoders stay the integrity of code formats, in particular those with specific characters and tabs. Encoders can maintain a wide variety of code, then again they then translate the inserted code into HTML-ready code that’s clean to stay into WordPress.

There aren’t any loyal encoder tools as plugins, then again many are presented as loose third-party web apps. Understand moreover that Encoder tools don’t offer any styling tools, in order that you’ll best possible download the code as it’s supposed to be displayed (no fancy boxes or line customization choices).

Some loyal encoder tools include:

In keeping with our checking out, one of the best encoder software is the W3Docs HTML Encoder, so we’ll use it for this tutorial.

Step 1: Open the Encoder and Make a selection Settings

Go to the W3Docs HTML Encoder internet web page.

The internet web page shows two side-by-side box fields. The one on the left is where to stay your code. The one on the suitable displays the encoded fashion to duplicate and paste into WordPress.

However, you’ll have to first set which type of code you’d like to stay:

  • Make a selection JavaScript unicode if pasting in code with JavaScript elements.
  • Go with HTML symbols when the use of HTML.
Pick HTML symbols
Make a selection HTML symbols

Step 2: Paste and Click on directly to Encode

Paste regardless of code you’d love to turn in WordPress into the left field. Then find and click on on on the Encode button above on the suitable.

Click to Encode
Click on directly to Encode

Step 3: Copy the Decoded End result

The finished product would possibly look sophisticated, but it surely certainly’s if truth be told a mix of HTML elements to stay every facet of the code you inserted, all without causing the code to activate and show something else on the frontend.

Click on at the Copy button.

Copy the code
Copy the code

Step 4: Paste Encoded HTML Into the WordPress Code or Text Editor

Go back to WordPress, and open the specified submit or internet web page.

Make a choice the Possible choices (3 vertical dots) menu products inside the upper-right corner. Click on on on the Code Editor chance.

Go to the Options menu
Go to the Possible choices menu

You’ll now see the Code Editor rather than the visual Block Editor. To seek out the arena you’d love to turn the code and paste your encoded HTML into the editor.

Paste encoded HTML
Paste encoded HTML

If you are the use of the Antique WordPress editor, you’ll have to transfer to the Text tab, which is the same as the Code Editor from the Gutenberg Block Editor.

Text tab
Text tab

Step 5: Put up and View the Code

Click on on Substitute or Put up for the submit, then navigate to the frontend of that submit to view the way in which it seems that.

You’ll have to see the original code that was pasted into the encoder, previous than the software added HTML encoding elements. As mentioned, there aren’t any styling choices with the encoders, so this is a very good way for a clean, minimalistic glance.

Published code
Published code

Means 4: The usage of a Custom designed Shortcode

Making a customized shortcode does the task of hanging chunks of reusable code without you having to duplicate and paste. That’s why custom designed shortcodes offer a forged choice for appearing code on WordPress.

Listed here are the advantages of the use of custom designed shortcodes to turn code:

  1. Custom designed shortcodes permit you to save tough code once, then reuse it, eliminating the need to kind longer code snippets every time.
  2. You’ll write your individual styling CSS for the code highlighters and boxes.
  3. Shortcodes can be used by the use of any individual, so other folks can take advantage of your code highlighters and blocks with the clicking of a button.

Creating a custom designed shortcode requires experience enhancing WordPress theme recordsdata, operating with PHP code, and probably rising WordPress plugins. On account of those must haves, making a custom designed shortcode for WordPress can also be tricky for those new to PHP.

However, the finished product results in a significantly easier solution to display code on WordPress.

HTML shortcode
HTML shortcode

You’ll identify the custom designed shortcode regardless of you wish to have and create a few possible choices, like [html] [/html] and [css] [/css], for more than a few coding languages.

CSS shortcode
CSS shortcode

Take into account that custom designed shortcodes art work best for syntax highlighting when the use of the Text Editor (in WordPress Antique) or the Custom designed HTML box when running with the WordPress Gutenberg Block Editor.

Text editor
Text editor

The serve as is to build a custom designed shortcode where you’ll be capable to kind or paste code between the outlet and closing tags of the shortcode.

Code pasted inside HTML shortcode to display WordPress code
Code pasted inside of HTML shortcode

Once published, your custom designed shortcode styling and highlighting settings get confirmed on the frontend. And the code you added displays successfully right through the syntax highlighter.

Frontend view to display WordPress code
Frontend view

Means 5: The usage of and


Tags

Most likely the oldest — however nevertheless extraordinarily loyal — solution to display code on WordPress is by the use of simply together with specific HTML tags around the code snippet. This system is best for when running with the antique WordPress editor, or in any HTML editor.

There are two possible choices:

  1. tags: Easiest imaginable for appearing a short lived line of code; incessantly used inside paragraphs
  2. 
    

    tags: Easiest for longer blocks of code, or when you’d like further formatting possible choices

Chance 1: Use Tags for Inline Code Snippets

Content material subject material creators who write about coding don’t at all times need to use massive code blocks. Every so often it makes further sense to include a quick little little bit of code inside of a paragraph.

However, you still need to highlight and stay that code’s formatting. And a couple of code would possibly explanation why problems with the encompassing content material subject material if no longer preserved appropriately.

<img interpreting=”async” loading=”lazy” class=”wp-image-151580 size-full” src=”https://kinsta.com/wp-content/uploads/2023/04/DraggedImage.103e5a059b524aa0aa00957a007800de.jpg” alt=”A
tag” width=”908″ top=”371″>
A break tag

Let’s take the
tag, as an example — without tags, it is going to simply add a break in your paragraph.

An unwanted break
An unwanted break

Striking the coding inside of the ones tags makes a some distance cleaner finish outcome:

 

To do so, open a WordPress submit, and each turn on the Code Editor (for the Gutenberg Block Editor) or the Text Editor (when the use of WordPress Antique).

Paste or kind the ones tags somewhere inside the editor; don’t insert the code you wish to have to turn merely however. As a substitute, add a space between the tags.

Space between code tags
Space between code tags

Switch to the Visual Editor (regardless of whether or not or now not you’re in Gutenberg or Antique WordPress).

You’ll see a small grey space inside the visual content material subject material. Click on on to put your cursor inside that grey space. That’s the position you are able to paste or kind inside the code for display.

Grey space to display WordPress code
Grey space to put in writing down code

As you kind, the grey space expands to handle the code snippet. Click on at the Put up or Substitute button for that submit.

Typing code into the grey space
Typing code into the grey space

On the frontend of the submit, you’ll now see the code preserved correctly, and without any ordinary job (like together with a break in your content material subject material).

The break tag displayed without actually adding a break
The break tag displayed without if truth be told together with a break

The formatting of the ones tags is usually barebones, but it surely certainly incessantly depends on your theme styling. For instance, our example best possible changes the font then again doesn’t include a grey background.

Chance 2: Use


Tags for Longer Code Blocks

Lengthier code snippets deserve their own blocks, separated from regardless of content material subject material you’re writing into paragraphs. For those, we advise sticking with


tags.

The process of together with a


tag is quite like with the tags, then again you could have more space to art work with with regards to hanging your code.

Go to a submit and open the Code (Gutenberg) or Text (Antique WordPress) editor. Paste or kind inside the code you’d love to turn. Then, surround the code with the ones tags:

 

Pre tags to display WordPress code
Pre tags

Switch to the Visual editor to view what it seems like. You’ll understand that the section of text can have a “Preformatted” label, which is precisely what the

 tag is meant to do.
Choose preformatted option
Make a selection preformatted chance

Click on on Put up or Substitute, then switch to the frontend to appear your code in its distinctive form. Similar to tags,


tags are terrible with formatting, in order that you’re left with the most simple possible look. However, there are ways to stylize the ones yourself.

Frontend results to display WordPress code
Frontend results
Pointers for Styling

 Tags

The


tags are a lot much less forged than tags, so likelihood is that you can bump into drawback depending on the type of code you’re having a look to show.

Use the ones tips to improve the way in which it seems that:

  • Take a look at your best to remove, or utterly avoid, line breaks, given that
    
    

    tag incessantly doesn’t recognize the ones. At the complete, it responds poorly to too many line breaks.

  • Believe together with an overflow-x:auto; property for your CSS to be able to upload scrolling capacity to the
    
    

    tag code. That is serving to with overflowing content material subject material, given that

    
    

    tag by itself we could your code run off the internet web page.

  • Stick to monospaced fonts.

You can moreover stylize the text formatting and box in the back of the code. Proper right here’s a starter template that you are able to upload for your CSS document:

article pre{
background:#ffffff;
border:3px #eee forged;
border-top:30px #eee forged;
font-family:Consolas, courier;
font-size:0.8em;
white-space:pre;
overflow-x:auto;
}

Means 6: The usage of a Markdown Editor that Connects to WordPress

Markdown editors offer the ability to not best possible kind and construction quicker, then again numerous them connect at once to WordPress for quick publishing suitable from the editor.

Many writers turn to markdown editors as a result of this rapid content material subject material creation process. And by chance, among the ones editors offer markdown for code blocks, this means that you are able to display code right through the markdown editor, then send it suitable off to WordPress for publishing.

Take into account that customary textual content editors (like Chic Textual content) don’t stay the integrity of code when transferred for publishing on WordPress. And HTML editors, while excellent for writing and storing code, won’t provide the highlighting choices required to stay code for WordPress publishing, each.

There are a number of markdown editors to select from, then again the very good solutions share two choices:

  1. Direct exporting to WordPress
  2. Markdown for code highlighting

You can, on the other hand, opt for a markdown editor with HTML exporting, if you happen to’re no longer considering direct WordPress exports.

The best markdown editors with every choices are:

Ulysses and ByWord are height category apps, while Obsidian has every loose and height category permutations.

For the following tutorial, we’ll use Ulysses.

Step 1: Add a Longform Code Block in Ulysses

While drafting a document in Ulysses, kind " markdown — that’s two apostrophes — every time you wish to have to right away add a code highlighter block inside of a document.

This markdown way is for longer blocks of code. It’s no longer usable at some point of a paragraph, so that you are going to must create a brand spanking new line to make certain that the markdown to activate.

New Ulysses code markdown
Ulysses code markdown

As quickly because the code highlighter turns out, you are able to kind or paste the remainder you wish to have into it.

Paste to display WordPress code into the Ulysses highlighter
Paste code into the Ulysses highlighter

Another way to turn on the code block is by the use of clicking on the Markdown (3 horizontal dots) menu products, then deciding at the Code chance.

Use the Markdown menu to select the Code item
Use the Markdown menu to choose the Code products

After clicking that menu products, the code highlighter field turns out any place the cursor was ultimate.

Empty code highlighter
Empty code highlighter

To place code snippets inside paragraphs, you’d turn to the `` markdown (which seems just about the identical, but it surely certainly’s if truth be told two acute/grave accents as a substitute of apostrophes).

Step 3: Export to WordPress

After you have your document ready, it’s time to export the whole thing to WordPress.

The unbelievable section about markdown editors that hook up with WordPress is that they take care of the code blocks all over the transfer. So, you’ll see successfully formatted code highlighters ready to put up in WordPress.

The code highlighter remains the same in WordPress
The code highlighter remains the identical in WordPress

In Ulysses, transfer to the best of the document to hunt out the toolbar. Click on at the Publishing Preview button.

Select the Publishing Preview button to display WordPress code
Make a choice the Publishing Preview button

This brings up a dropdown menu to choose a platform and internet web page to put up on. You can moreover use the Arrange Accounts chance in that menu to log correct right into a WordPress internet web page previous than exporting.

After you have the proper internet web page, click on at the Put up button.

Pick an account and publish
Make a selection an account and put up

Fill inside the submit establish, time table, and each different information you’d like, paying homage to categories, tags, and featured photos.

The most important section, on the other hand, is to set the Status to Draft with the intention to now not put up the submit without reviewing it on WordPress first.

Click on on OK to proceed.

Pick a status, then click OK to display WordPress code
Make a selection a status, then click on on OK

Within a few seconds, Ulysses places the entire document into a brand spanking new WordPress submit (you could have to log into your WordPress admin when it pops up).

You’ll see the code blocks already configured and ready to put up. Click on at the Put up button to make it are living.

Code blocks in WordPress editor
Code blocks inside the WordPress editor

On the frontend, you’ll see that the inline code snippets and larger code blocks are successfully highlighted, and the formatting from that code has been preserved.

Frontend results to display wordpress code
Frontend results

New weblog publish with code? Show it in uncooked shape and make it ✨ lovely ✨ with this information 👇Click on to Tweet

Summary

There are a variety of methods to appropriately display code on WordPress, and it incessantly depends on the WordPress editor being used, the code language you’d love to turn, and the way in which you’d love to turn and construction that code. For instance, opting for a plugin will evidently provide a further inventive formatting experience than the standard Code block inside the WordPress Gutenberg editor.

In this article, we covered many more than a few methods illustrating learn to display code in WordPress.

We in most cases recommend starting with way 1 and working your means via. Means 2 serves you well if searching for further styling possible choices, and strategies 3–5 are best possible useful in particular situations. Means 6 is quite of a bonus solution, supposed for many who need markdown editors over writing at once into WordPress.

Regardless of which way you choose, a dependable web hosting supplier permit you to polish your internet web site even further. Kinsta’s WordPress Webhosting answers offer plans for websites of all shapes and sizes, and the easy-to-use platform — MyKinsta, a proprietary admin dashboard — makes enhancing any portion of your internet web site and its files a cinch. Plus, you’ll get the added benefits of Kinsta’s world-class pace, safety, and strengthen.

Have you ever ever tried to turn code in WordPress previously? If so, which way worked best for you? Let us know inside the comments section underneath.

The submit How To Show Code in WordPress (and Make It Glance Beautiful) gave the impression first on Kinsta®.

WP Hosting

[ continue ]

WordPress Maintenance Plans | WordPress Hosting

Contents

read more

0 Comments

Submit a Comment

DON'T LET YOUR WEBSITE GET DESTROYED BY HACKERS!

Get your FREE copy of our Cyber Security for WordPress® whitepaper.

You'll also get exclusive access to discounts that are only found at the bottom of our WP CyberSec whitepaper.

You have Successfully Subscribed!