Simple Wordpress setup for noob, basic usage

I am currently attempting to setup a Wordpress blog for a friend. I have a free Netlify account and also registered a domain name with dynadot…

I just want it so that my friend can point her browser at the domain name I have registered. Log in to WP and start blogging and possibly change themes and settings etc.

I have read that Netlify only serves static pages. Does this mean that it will be awkward to work with WP using Netlify? I am finding tutorials and posts urging me to use Gatsby and also Jamstack. The thing is, is that my friend is not massively tech savvy… and I like the simplicity of using the basic WP interface without the extra connecting platforms (Gatsby… Jamstack). I have some familiarity with WP. I have a local setup and understand the basic concepts of hosting an installation on a server. But I am finding this very unintuitive to do on Netlify.
Like mentioned I would like to bypass and unnecessary software where possible. Just using a simple WP setup. Thank you for reading.

Any help and advice would be greatly appreciated…

Short version: You can’t run Wordpress on Netlify. Netlify is meant to host, as you point out, jamstack sites. More info here:

You can use Wordpress as a headless CMS, but it does mean getting familiar with a static site generator. Here’s a pretty elaborate article on how that could work:

An alternative to using Wordpress is Netlify CMS. It’s a git based CMS that integrates with SSG’s quite nicely

Thanks very much… a good unambiguous short answer… appreciated. I will now consider learning more about Jamstack.

I’d definitely recommend https://jamstack.org for some overarching reading! :slight_smile: Lots of CMS options, there’s even select-and-forget builders like Stackbit out there. Otherwise, DIY it with the generators and SSGs discussed over on the Jamstack site!

There’s just another thing I would really appreciate help with before I roll up my sleeves and get stuck into this guys… It would really help me out and be the “light at the end of the tunnel” that I will be working towards…
So if I go with Jamstack… Where will the WP data/content, the posts be hosted? Will it be as simple as my friend being able to login (wordpress style) at her domain and be able to post and perform basic admin? I want the WP user interface for her to use, and would like it to be as seamless as possible. Really appreciate the help guys, thanks.

It sounds like you are looking for a solution to run WordPress as a static site, or as a Jamstack site. If you Google “static WordPress” you may find information that’s relevant to what you’re trying to achieve.

2 Likes

Thanks Miriam for the search “suggestion”, my related terminology has recently been improving. I’ve been reading more and more recently and I’m leaning toward going with Jamstack.
Thanks for the help everyone.

1 Like

thanks for that suggestion, @miriamschwab! Please come back any time with more questions, @andrew81. This forum is intended to be very noob friendly :slight_smile:

Hello again. Since starting this thread. I have downloaded the book made available on the Netlify site: “Modern Web Development on the JAMstack”. It was very enlightening reading. And it’s convinced me that I would like to learn more about this new approach to web development.

For my current project. The requirements are:

  • My friend be able to log in remotely
  • Write content (blog posts)
  • Customise the look and feel of the site.

I wanted it so that no setup or technically challenging tasks are required from her.
I do not want to host the WP content myself locally. I was hoping to host content on Netlify.

So I have started reading this:

Although I am just about started and have become stuck…

It states that I must have WP up and running… but I am under the impression that I cannot have a plain WP installation on Netlify… does this mean that I must run WP locally and therefore that I must allow access to my own local server in the future for my friend’s blog to be accessible to her and to the rest of the world…

I’m not quite clear how to proceed here…

Thanks for any help 8)

Hi, @andrew81. The guide you linked to is using a WordPress instance as a CMS. In that scenario WordPress is running “somewhere else”.

does this mean that I must run WP locally and therefore that I must allow access to my own local server in the future for my friend’s blog to be accessible to her and to the rest of the world…

That is one solution. Another solution is to pay for a WordPress instance “somewhere else”. You are correct that you cannot host WordPress itself at Netlify.

Let’s stop for a moment and address the real question here. I think this question is this:

How do you make a a site which does the following?

  • My friend be able to log in remotely
  • Write content (blog posts)
  • Customise the look and feel of the site.

This is all possible without using WordPress. WordPress does it also but you are asking this question on a community site for a platform that specifically does not run WordPress.

So, let’s completely ignore WordPress for now. How do you solve this without WordPress?

First, please understand there are literally countless possible solutions. I’m going to pick one specific solution to highlight what a solution might look like. Picking the right solution for you is up to you though.

One solution is to use Hugo and Netlify CMS:

Hugo is a static site generator (SSG). Netlify CMS is a content management system (CMS). Note, Hugo uses markdown for post content so you friend must still be able to write markdown to make new blog posts using Hugo.

What is a content management system? Well, it is a system to manage content on a website without the save level of knowledge as a web developer. This content might be product inventory, blog posts, collections of images, etc.

Note, using Netlify CMS to update the Hugo site depends on Netlify Identity and Git Gateway.

In the Smashing article you linked to, WordPress is being used as an external CMS. This requires a WordPress instance somewhere. WordPress requires an HTTP server, a PHP application servers, and a MySQL database running.

With the WordPress example, WordPress itself is the CMS and it is using MySQL as the backend datastore.

In the Hugo plus Netlify CMS example, Netlify CMS is the CMS and the Git repository is the backend datastore.

The only thing missing is the customize the look and feel requirement. With a Hugo site, this is done using “themes”:

Note, configuring a new Hugo theme is not done via Netlify CMS (or if it is I don’t know how to do it that way). Configuring the Hugo theme would be something that would be more technical than writing a new blog post but it would only need to be done once (or as often as you decide to change the theme). You would likely need to configure a theme for your friend and make updates if they wanted changes.

Now, all these pieces (the CMS, SSG, and theme) are just like “lego bricks”. What do I mean by this?

There are numerous Hugo themes to choose from or you can write your own. You can pick from many and they can be interchanged similar to adding and removing lego bricks.

Hugo itself is a “lego brick” in the SSG role. There are many SSGs to pick from. Hugo is just one choice.

(Note, Hugo themes probably won’t work with a different SSG but most SSGs have a theme system of some kind, for example Gatsby themes.) You can even write a new SSG if you want to. There are literally countless options for SSGs (countless when you including writing your own).

Netlify CMS is a lego brick in the CMS role. There are many great CMSs to choose from. For example, Forestry can also be used with Hugo (or other SSGs) and can be use instead of Netlify CMS. I hear Forestry is an incredible CMS. (I really love their tree logo too but that is neither here nor there.)

I’m trying to point out is that there are so many options to choose from! Countless options! Write you own options! Use an API powered by potatoes for electricity! The choices are up to you!

What I cannot do is to tell you what is right for your use case. (I can sadly rule out potato power as a reliable long term solution - at least for now.) None of this is designed to be a drop in replacement for WordPress.

If you want to know, “How do I make Netlify exactly like WordPress?” Then the answer is almost certainly “you cannot”. However, you can make something “similar” and what to use depends on you.

If you want to use any of these tools you will need to learn new technologies and what is needed to make them work together. You will need to research the various SSGs (and themes), CMSs, and other tooling available. The choices which are best for you and your site might not be the best fit for someone else. Only you can say what is best for you.

If you have a specific question like: “I’m using SSG X and CMS Y. How do I do Z?” then we can probably help because it is a specific question.

Again, I would say that step one should be deciding what tools you want to use and then move forward with specific solutions from there.

If you are trying to move away from WordPress though, I would not recommend using WordPress in the CMS role. To do so begs the question: Why move to a different platform which isn’t WordPress just to make WordPress a dependency again?

Please also note that, if you do decide to use WordPress for a CMS, I don’t think any of our support team has much (if any) experience with it so any WordPress questions will likely only be answered by other community members.

Maybe other people can recommend their favorite solutions. At the end of the day though, you will still need to make the decision about what is best for you.

Personally don’t use a CMS. I make new posts using a text editor to write markdown, Hugo for the SSG (plus a theme), and a Git repo at GitHub - again not using a CMS at all. Why do I like Hugo? Well, I like Go and Hugo is fast.

If you like Ruby, maybe Jekyll will be the SSG of choice for you. If you are a Node,js person, maybe Gatsby (above) or Hexo is more your style. I do recommend picking a tool that uses a language you enjoy and/or feel most comfortable with.

I’d love to hear what other people are using. If someone else has an opinion and wants to chime in here, please do feel free add your comments here.