DirJournal

How to Use WordPress to Set up a Combination Professional Site and Blog

Wordpress
Logo credit: WordPress.org

WordPress is a blog platform. But did you know it can be used as much more than that? You can use WordPress to run just about any kind of site you can imagine — blogs, static-looking business sites, forums, directories, membership sites, and more. With flexible templates and a huge collection of available WordPress plugins, it’s really capable of serving as a fully-functioning content management system (CMS).

One of the biggest benefits of using WordPress to manage a business site or professional portfolio site is that a single installation can manage both a static-looking professional website and a fully-integrated blog. The blog doesn’t have to appear on the homepage, and the pages on the site don’t have to follow the blog’s formatting (such as listing blog categories in the sidebar).

Let’s talk about why this combination (or hybrid) type of WordPress site can be beneficial to business owners and independent professionals. Then I’ll share an example (my own business site and corresponding blog), including some tricks and tweaks you can use to achieve the same thing as simply as possible.

Why Would You Want to Run a Hybrid Site on WordPress?

There are several reasons you want to consider hosting a “static” business site and your blog together on a single WordPress installation. Here are some examples:

It’s really about simplicity and flexibility. If you want those things, a hybrid WordPress site and blog might be a good option for you. Now, on to the next question: how do you set it up?

How to Set up a Static Site with a Blog Using WordPress (Self-Hosted)

Let’s use my business site (ProBusinessWriter.com) as an example. This is an ultra-minimal design I put together to keep the focus on the copy (I’m a writer after all — your focus might be very different depending on what you do). Here are some of the things I personally wanted in my own hybrid WordPress professional site and blog:

You can see screenshots below of the current homepage, an internal page, and the blog layout.

 

 

Customized Homepage of ProBusinessWriter.com

 

 

Internal WordPress Page of ProBusinessWriter.com

 

Blog Page Format for ProBusinessWriter.com

I went with the simplest options I could think of at the time to make the site and blog appear the way I wanted them to. Here is a step-by-step look at how you can do something similar (assuming that you already have your self-hosted WordPress installation setup — if you don’t, follow these 5-minute WordPress installation instructions).

Note: This tutorial assumes that you understand basic HTML and CSS, as you’ll be editing your stylesheet and template files for your WordPress theme. If you’re a complete newbie to coding, your best option is to hire a designer to create a completely custom site for you, or hire a coder to handle alterations on an existing theme.

  1. Choose a theme (any theme) and install it. — You can create a combination static site / blog for your business using any theme you want. You can use free WordPress themes. You can use premium WordPress themes. You can use a custom design. Just choose one that you like and install it. If you aren’t sure how to install your WordPress theme, follow the instructions that came with your theme — often in a Readme.txt file — or follow the instructions from WordPress.org on adding themes to your WordPress installation.

  2. Create a homepage template (optional). — If you want your homepage to look different from internal pages (like your About page), you’ll need to add a template file for it. You can model it on the code from your basic page template (generally called page.php), so you just make changes rather than having to code it from scratch. In my case I actually left the page.php file alone for the blog page format (you’ll see why below), and I created two new page templates — one for the homepage and one for my internal pages. For example, you might remove the call to display the sidebar content (or you might create a separate sidebar template file to be called on pages, while the default sidebar appears only on the blog). If you want your homepage formatting to be the same as other pages on your blog, you can skip this step completely. Remember that when you create a new page template, you have to include the following code at the very top of that template file (but insert your own template name):

    <?php
    /*
    Template Name: YourTemplateName
    */
    ?>

  3. Create the actual homepage. — Once your homepage template is ready, it’s time to create the actual homepage. Do this in the same way you would create any WordPress page (not post). Just click the “add new” link under the “Pages” heading in your WordPress admin area’s sidebar. Here you’ll add the text and images that you want to appear on your homepage. If you created a new homepage template, look for a drop-down menu on the “new page” form while you’re writing that text. It will be under a heading called “Template.” This tells WordPress what page formatting to display this particular content on.

  4. Set it as your front page. — Once you’ve created your homepage and added the content or marketing copy, it’s time to tell WordPress to use this page as the front page on your site (instead of displaying the blog automatically). Under the “Settings” menu in the sidebar of your WordPress admin area, click on “Reading.” You’ll see an option to use a static page for your homepage. Tick that option. Then choose the new homepage you setup from the drop-down list next to where it says “front page.” You’ll also notice a “posts page” option. That’s the new location where your blog will display since it’s no longer going to show up on the front page of the site. We’ll create a new page for that next, so just leave it alone for now.

  5. Create a blog page. — Create another page. Call it “Blog” or something similar. You shouldn’t have to change the associated page template for this one. This is the template your blog’s main page will show on, so you’ll still want it to include the sidebar information more than likely.

  6. Set the default blog page. — Go back into the “Reading” settings. Now you can choose your new “Blog” page from the dropdown list next to “posts page.” This will add a “Blog” link to your page navigation on the front-end of the website (where will depend on your theme; each theme is different).

That’s really all there is to it! You’re just creating two pages, changing two settings, and possibly adding a new homepage template file if you want the homepage to look different than everything else. Now you’ll have your customized homepage showing up when people visit the main page of your site. They’ll be able to browse your pages like they could on any static website, and they can access your blog posts simply by clicking a link in your navigation. Very easy.

If you’re well-versed in WordPress sites, PHP and CSS, you can pretty much make the entire site work in any way you please. Even if you’re a relative beginner though, you can still very easily have a static homepage on your business site while still featuring a blog.

Do you have a combination professional site / blog hosted on WordPress? Share a link in the comments and show us!

Exit mobile version