Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

Ash Horsman
Ash Horsman
2,420 Points

How to make a blog, without Wordpress?

Can someone tell me how you would go about creating a blog on a non-Wordpress website?

I would prefer to create my own website and create the blog as well. I appreciate Wordpress is easy for blogs, but my website will be for a business with a blog for news updates etc.

Ash Horsman
Ash Horsman
2,420 Points

That was helpful thank you Jesรบs Camarena .

I haven't learned how to use WP on here, but I've got a few years of experience with using it. How easy is it to create your own custom theme for WP?

1 Answer

Hey Ash,

Is this a Static or Dynamic website?

Creating your own blog is possible without a CMS (Content Management System) like WordPress and Drupal. However, I would not recommend it. Development can be tedious and time consuming, but there are ways.

For Example:

If this is a static website, probably the fastest and easiest way to do this is to create a HTML template for blog post and use each time you would like to create blog. You will need to update the page where your list of blog articles sit (including links) each time a new blog post is created.

As someone who works with WordPress often, I can immediately tell when a website is running WP and let me tell you, you can find it everywhere.

If I can make a recommendation, I suggest using a CMS (does not have to be WordPress) and modifying to your business needs. This means reading through CMS documentation and customizing to your liking. From appearances (CSS) to Functionality (PHP). It will save you development time.

If you meant creating your own CMS like WP, that takes time and can not be explained in great detail here, but it will involve PHP. and MySQL along with front-end development.

Hope I was able to help.