Skip to content

Using WordPress as a CMS

wordpressasacms

A couple of years ago if I’d said WordPress would make a great CMS, you’d have probably thought I was totally mad! These day however, when you need a simple CMS WordPress is a brilliant option. In this post I’m going to show you how to make your wordpress CMS even better with some simple bits of code and some not so simple plugins.

Customising the navbar

First thing we can do is display pages on the navbar instead of categories. We can do that with the following code, creating an ordered list:

But you won’t always want to display all your pages, so you can be picky and exclude certain pages by finding their IDs:

[xml] <ul>
<?php wp_list_pages(‘exclude=pageid,otherpageid’ ); ?></ul>
[/xml]

Or maybe you’d like to display pages based on date?

[xml] <ul>
<?php wp_list_pages(‘sort_column=post_date&show_date=created’); ?></ul>
[/xml]

Source – WP Codex

Flutter

Flutter is a WordPress plugin that will transform your site into a fully fledged CMS. What does it do? Check out the flutter release page for the complete low-down, but in a nutshell it allows editing of posts without leaving the post page,
gives you ‘custom write panels’ that give you more options besides post and page. It also has phpthumb built in for ‘powerful image manipulation’.There are a couple of videos running through the features on the plugin’s microsite, so check it out!

Manage what users can/can’t do

Something that is essential in any CMS is the ability to manage users. Whilst WordPress has basic user management built in, you can extend it further with the Role Manager plugin. What this allows you to do is precisely manage your users: the options are huge! The screen below is from one of my sites, Nometet.com, where I use the plugin.

rolemanager

Using page templates

Page templates allow you use a custom template in pages, a really useful feature – you can integrate Google Custom Search for example. How do you create a page template? Open up your editor (ie Notepad) and add the following code:

[php] <?php
/*Template Name: whatever you want your template name to be */
?>[/php]

With that at the top of the page, you can add whatever code you like below.

To use your new page template, upload it to your theme directory and go to the page editor, and under attributes find your template. Done.

Display a page as homepage

Another essential CMS feature is the ability to display static pages as the homepage. Once you’ve created your page, go to ‘Reading’, under the Settings tab. Select the option ‘A static page’ and then select the page you want from the drop-down menu. Done.

Permalinks

Something that you should do anyway for SEO’s sake, but is also a nice CMS-like feature is change your permalinks. Again under settings, select ‘Permalinks’. The WP Codex has a list of all the options you’ve got, but I’d go with /%category%/%postname%/ or /%postname%/.

And finally

In this post I hope I’ve given you a couple of pointers and ideas to make WordPress your CMS of choice, but there is a lot more you can do besides! Stay tuned for a WordPress-as-a-CMS theme coming soon!

Additional reading

Chris Coyier’s screencast on the topic, for CSS Tricks.

Creating page templates – WP Recipes

WP Codex – Pages

Alex Denning

22 Comments
Most Voted
Newest Oldest
Inline Feedbacks
View all comments
andy.edmonds.be › links for 2010-04-11
April 12, 2010 12:04 am

[…] Using WordPress as a CMS | WPShout.com (tags: wordpress cms tutorial plugin hacks) This was written by andy. Posted on Monday, April 12, 2010, at 1:03 am. Filed under Delicious. Bookmark the permalink. Follow comments here with the RSS feed. Post a comment or leave a trackback. […]

vadepaysa
April 11, 2010 2:54 am

Honestly, don’t do it.

DO NOT USE wordpress as a CMS. WordPress is excellent blogging engine and that’s about it.

I am writing this out of experience. I too was super excited about using WP as a CMS, because it was working so well on my blog. ALl the plugins, themes, awesome!

BUT, I did a terrible mistake when I decided to use WP as a CMS for a huge non-profit org.

I bravely installed WP thinking I will hack in anything I want, but,
they had such dynamic requirements to the page content and such complicated user access rules that every change they wanted meant hacking a plugin or tweaking php of my theme which took hours together.

This drove me INSANE!

And to my rescue, came my age old friend, Drupal.

Drupal is a CMS
WP IS NOT

WP is an amazing blog platform.

Please use caution, please learn from my painful experiences.

Using WordPress as a CMS | WPShout.com « Lelapin’s Weblog
April 10, 2010 4:54 pm

[…] via Using WordPress as a CMS | WPShout.com. […]

Steve
February 6, 2010 6:06 am

Hi,
Great post. I am completely new to WP – where do I put the code for the navbar?
Thanks,
S

Jim Pohl
September 28, 2009 1:20 pm

Hi Alex,

I’ve written a standard text in HTML. I’m looking to present it in a CMS. I haven’t
seen a book done that way. Might you know of one (or some).

Please look at my site. There is a lot of work there. The work needs to be “indices-sortable.”
Categories, I guess. Anyway I need advice and help.

Thanks, Jim Pohl

GreyGoose
August 20, 2009 3:02 pm

WordPress is an excellent blog builder, but if you want to create a website for your clients there’s an even better free tool called ModX – do all your design in your favourite web-editing tool, no php knowledge required, no cutting up the page and saving it as something else, just paste your HTML into the new template box within MOdX, with the right content commands etc, as per the supplied sample, upload your CSS and images and job done. Also in it’s favour, the default admin pages look like they’re aimed at adults not children.

mediatechno
April 27, 2009 8:07 am

i think is very useful information . thank you

21 Resourcen zu “Wordpress als CMS” | Bugeyes.de
April 20, 2009 8:40 am

[…] Using WordPress as a CMS – (Artikel von nometech.com) […]

JeremiahTolbert.com » Blog Archive » The Week in Links: Photography, Design, and SF
April 17, 2009 8:07 pm

[…] Using WordPress as a CMS | Nometech.com […]

Wordpress UK » Using bWordPress/b as a bCMS/b | Nometech.com
April 17, 2009 9:56 am

[…] more here: Using bWordPress/b as a bCMS/b | Nometech.com This entry was posted on Monday, April 13th, 2009 and is filed under WordPress News. You can […]

Tim
April 15, 2009 8:48 pm

Thanks for this post. I love using WordPress as a CMS. I haven't had much luck with Role Manager though, didn't seem to work right.

goofydg1
April 15, 2009 12:12 pm

I use WordPress as a CMS for many of my clients. Works great. With the proper set of plugins you should have no problem.

Patternhead
April 15, 2009 8:17 am

Interesting post, thanks.

I really need to get my head around the role management in WP. I have an art group site that runs on Textpattern and I'd love to move over to WP and allow members to take care of their own pages.

choen
April 15, 2009 6:46 am

nice post… thanks..

Daily David — davidgagne.net
April 15, 2009 4:01 am

[…] Using WordPress as a CMS […]

Using WordPress as a CMS | Nometech.com | WOPRESS CMS DEMO
April 15, 2009 3:03 am

[…] the original here: Using WordPress as a CMS | Nometech.com « VN Idea Design » Free WordPress Theme – Fresh Blog 4 WordPress Design | The NFL, Drug […]

Amy Christensen
April 13, 2009 3:27 pm

Nice post! You've got some great tips here. I've set up blogs in WordPress and have been tossing around (but was still a little uncertain about) using it as a CMS for some of my website clients. Main question: If a client is going to have a WP blog as well as a site, would you suggest setting up their blog separately (and link to it) or incorporate it into their main WP website? If the later, how do you suggest managing this all within one WP site?

Or start the conversation in our Facebook group for WordPress professionals. Find answers, share tips, and get help from other WordPress experts. Join now (it’s free)!

Most Searched Articles

Best JavaScript Libraries and Frameworks: Try These 14 in 2024

In this post, we look at the best JavaScript libraries and frameworks to try out this year. Why? Well, with JavaScript being available in every web browser, this makes it the most accessible programming language of ...

25 Best Free WordPress Themes (Responsive, Mobile-Ready, Beautiful)

If you're looking for only the best free WordPress themes in the market for this year, then you're in the right place. We have more than enough such themes for you right ...

12 Best WordPress Hosting Providers of 2024 Compared and Tested

Looking for the best WordPress hosting that you can actually afford? We did the testing for you. Here are 10+ best hosts on the market ...

Handpicked Articles

How to Make a WordPress Website: Ultimate Guide for All Users – Beginners, Intermediate, Advanced

Many people wonder how to make a WordPress website. They’ve heard about WordPress, its incredible popularity, excellent features and designs, and now they want to join the pack and build a WordPress website of their own. So, where does one get ...

How to Start an Ecommerce Business: Ultimate Guide for 2024

Is this going to be the year you learn how to start an eCommerce business from scratch? You’re certainly in the right place! This guide will give you a roadmap to getting from 0 to a fully functional eCommerce business. ...