DEV Community

Cover image for Using Wordpress with React.js
Tim Smith
Tim Smith

Posted on • Originally published at iamtimsmith.com

Using Wordpress with React.js

In this article, we will cover how to use WordPress as a headless CMS by leveraging the WordPress API and React js when building a project.

If you've ever wondered whether or not you can use React with Wordpress, the answer is yes. If you've built wordpress sites before then the solution may not be as obvious as one might expect.

What is a Headless CMS

Before we get into the code, it may be useful to explain how we will handle this. You may have heard the buzz word "headless cms" tossed around if you've searched for an easy way to manage content for your react js project. Because this term is becoming more popular, it may be beneficial to define that sooner rather than later.

A headless CMS is a back-end content management system that doesn't provide a front-end solution.

By default, Wordpress uses themes and templates to provide a front-end for our Wordpress sites. Building a site like this uses to interact with the database and create structure our users can view. Using this method to build a front-end can have a couple of downsides.

First, it can create sites that aren't particularly performant. While PHP is a versatile language, there are better solutions for building out UIs for our users. Second, Wordpress powers something like one-third of the internet. Because of this, hackers like to try to get into Wordpress sites to access sensitive data. Having a separate front-end prevents users or hackers from knowing it is a Wordpress site at all.

I hate this hacker crap!

Okay, so how do I use a React js to do this?

Wordpress exposes a REST api that allows access to the data created by the site. We can leverage this technology with a library like Axios to consume the data from our Wordpress site and pull it in to our React.js project. This means that we can have the best of both words: the ease of using Wordpress to manage content and the joy of building with React js.

Using Wordpress as Our Back-end

Lets take a look at a Wordpress site so you can see exactly what I'm talking about. You can use any Wordpress site for this, even a site being hosted at a subdomain. For this article I will be looking at the TechCrunch website.

By simply adding /wp-json/wp/v2/posts to the end of the url, we will see a JSON output of all of the most recent posts. By simply changing posts to pages, we can see the data for the pages in the TechCrunch site.

TechCrunch Posts API

We can try out different options like posts, pages, users, and more. Go ahead and play around to see what data you can find. This will allow us to decide what we want to use and what we don't.

Decisions Decisions

Our React js Starter App

I have created a react starter you can download from here. The solution is also in there on another branch. You can download the files, run yarn or npm install (whichever you prefer) and then yarn start or npm run start. You will see our simple page, but will notice that there isn't any content. Lets get started and add some content.

Install Necessary Packages

If we open up the package.json file, we can see that I have already included react, react-dom, and bulma to build our front-end. Before we can go further with our react js app, we need to add a few more packages.

We can add Axios which is a package that allows us to make http requests from our application without any hassle. React-router can be used to create routes which means that we can switch pages or components without a browser refresh. To install these two packages, we can use the following code in our terminal:

Install axios and react-router

Add React Router to App.js file

Now that we have our new packages installed, we need to set up react-router in our app.js file to tell our browser what should be displayed when different paths are entered into the address bar. To start, we need to import the pieces we need from react-router at the top of the file. At the bottom of the imports, add the following code:

Import react-router into app.js

Now that we have imported react-router, we can use those components to set up routes. Our current app.js file looks something like this:

App.js file after adding import statement

To add a router to our app.js component, we need to wrap the outermost <div> in a <Router> component so we can set up our application's routes. Then we can replace our <h1> tag with these two routes:

Add our application's two routes

Let's break this down:

Our first route tells reactjs to show a component called PostList when a user visits the home route (http://localhost:1234). The exact attribute means that it needs to match this route exactly, which means that if we have anything after that it will not go to this route.

The second route will show a component called PostView when a user visits a wildcard route. The :slug denotes that any string after the slash will be a different route in our application. In our case, this string or slug (since that's what we named it) will be the slug for the TechCrunch blog post. Our app.js file should now look like this:

Modified app.js file

Next we need to create the PostList and PostView components and import them into the app.js component.

Creating our PostList Component

Before starting to create our PostList component, we should spend a little time thinking about what kind of component we should use. We will be making an http request with axios using the componentDidMount lifecycle method and then we can store it in state. We can use both state and lifecycle methods in a class component. Now that we have an idea of how this component will be built, we can get started. First we should create the file for the component:

Create the file for our PostList component

Next we should import the stuff we will need to build this component. Add these import statements to the top of the PostList.js file:

Add imports to our PostList.js file

After that, we can create a class component called PostList and set up the constructor and state for the index page of our blog. Our state should hold a list of the posts we will be displaying. Any custom functions we write in this component will be bound to the this keyword in this constructor.

Set up constructor and state for PostList

Now that we have a place to put the data for our posts, we should create a lifecycle method to pull in that data and assign it to our state. We can do this pretty easily by adding the following code after our constructor:

Add componentDidMount lifecycle method to react js component

If you're developing React applications often, I would recommend installing the React DevTools in your browser of choice. This makes development with react js very simple and keeping track of data being passed through state and props.

We can now check our state to make sure that it is being populated correctly from our componentDidMount lifecycle method. To do this, open developer tools in your browser and go to the react tab. Then we can drill down in the structure until we find our PostList component and the pane on the right shows our state and props.

Check react js devtools to make sure state is being assigned

Since we have all of the posts in our state, we can create a render method with structure for our page. To do this in a simple way, we can use a map() function which will iterate over each item in an array. Our render method can go after our componentDidMount method with the following code.

Add render method to PostList.js

If we run our site with npm run start or yarn start, we can see that our blog posts are being displayed correctly but we can see the HTML tags being rendered. That's not cool. To render this correctly, we should create a function to use with the dangerouslySetInnerHTML attribute.

Lets add a function to do this after our componentDidMount but before the render method. We also need to bind the this keyword inside our constructor. We can then use the dangerouslySetInnerHtml attribute to render the post excerpt in a <div>. Our completed PostList component should look like this:

Completed PostList component

Creating a PostView Component

If we look back at our app.js file, we can see that the blog post will be rendered with a PostView component, so let's go ahead and create it!

Create a file for our PostView component

The code above will create a file to house our PostView component and open it in your default code editor. To make things simple, we can just copy the formula for our PostList component. We can copy and paste the code from our PostList component and make a few small modifications.

First, we need to make sure and change the name of the component from PostList to PostView. Next we need to modify the componentDidMount method a bit. We can add a line of code which will get the :slug from the url in the address bar and use that to filter the posts being returned by the Wordpress API down to a single post. Finally, we need to alter the render method to display a full post if one exists or not show an error if it doesn't.

The code below will be used for our completed PostView component. Take a look at it and see if you can spot the differences and figure out why we handled them this way.

The code for our completed PostView component

Last Steps for Our ReactJS Blog

We are pretty much set now with our blog. There are just a few more small things we need to do to get our application working how we want. First, it's expected that a logo or site title links back to the homepage. Since we're using react-router in our project, we can even do this without a page refresh. To do this, we can open the components/header.js file and modify it to look like this:

Our modified code for the Header component

The last step for our Wordpress and React js blog is to add import statements to the app.js file for our two components, PostList and PostView so react knows where to get them from. Once you have done this, you should be able to run the application and see the most recent blog posts from TechCrunch.

Performance Issues with React js

You may notice some issues with load speed or a glitchy sort of feeling where the screen is blank for a second before showing the content. This is because the content is being rendered after the component is mounted so there is a small delay. In addition, search engine crawlers have a hard time reading the content on sites like this because it is loaded via javascript after the page is rendered. There are a few popular ways to handle these issues:

Gatsby js

Gatsby.js, a Static Site Generator

Gatsby js is one of my favorite tools to build with in the react js ecosystem. It allows us to build a site or app using React, React-router, and Graphql right out of the box! Then, when we actually build the application, Gatsby js creates static files which make our applications stupid fast.

Because the files for our application are being served statically, they can be very fast as the content is all created beforehand rather than as the page is rendering. This can be a bit tricky since we have to figure out a way to trigger a build when we update the content. Netlify is my go-to service for this as it's very easy to use and when you push to a certain git branch it will rebuild the Gatsby js project.

Thank U, Next

Next.js, Server-Side Rendered React js

Another popular solution to handle these issues is called Next js, which provides server-side rendering for react js applications. Rather than using componentDidMount to fetch our data after our component has mounted, Next js exposes a new method called getIntialProps which allows us to fetch data before the component is rendered.

The fact that Next js offers server-side rendering also fixes the issue with the crawlers having trouble reading content. In addition, the tutorials available on their site are pretty awesome. This would be a great solution if you're building an app using the MERN stack because it can handle frequently changing data.

Wrapping up our Wordpress and React js project

As you can see, it's really pretty easy to leverage the awesome UI provided by Wordpress while getting to enjoy React js for the front-end. You can take advantage of these tools in your personal projects, enterprise solutions, or freelance work. This is one of those rare occasions where you do get the best of both worlds!

Oldest comments (7)

Collapse
 
xbotme profile image
shawonTheSillycat

I was thinking about doing something like that. thanks for the heads up gonna try it out and see if wordpress is better or not for headless cms

Collapse
 
iam_timsmith profile image
Tim Smith • Edited

I have played around with some different headless options. I like some of the others a little better for some things, but I think things like sanity.io might be too complicated for a client who isn’t tech savvy and wants it to β€œjust work”.

Collapse
 
xbotme profile image
shawonTheSillycat

well i did a work on laravel and react redux but with laravel u need to fully create all back-end routes and so on. For wordpress i dont need to do all those work. Just need to see how fast wordpress is compare to laravel back-end.

Thread Thread
 
iam_timsmith profile image
Tim Smith

Definitely. I also have a post about the MERN stack if you’re interested in trying out javascript for a back-end instead of Laravel.

Collapse
 
makwelos profile image
Siya

Did you try to compare the speed of wordpress?

Collapse
 
jarodpeachey profile image
Jarod Peachey

Gatsby rocks. Use it πŸ‘Š

Collapse
 
amitbiswasta profile image
Amit Biswas

Hi Tim, thanks for the insight. I am also learning react now. Few days back I have written a Ajax based WordPress archive with REST API. Here's the codepen - codepen.io/amitbiswas06/pen/PoPavyZ

I wonder can I make this into react too? Any help will be appreciated. Thanks.