Building a Non-blog Site with WordPress

Share this article

Building a Non-Blog Site with WordPress

This post digs into how you can use WordPress to run a regular, non-blog website.

WordPress began as a blogging platform and has a long-established dominance in the world of blogging. No matter what kind of blog you’re intending to run, WordPress can help you get it done with ease.

Be it a photo blog, a video blog or even a simple journal for your thoughts, WordPress comes loaded with all the bells, whistles and features that a blogger might ask for!

With that said, we can also use WordPress for creating a non-blog site — one that doesn’t really need a blog at all, but instead, is just a simple and straightforward website. Despite being primarily a blogging tool, WordPress can very well be made to run a non-blog website.

WordPress: Blogging Features

WordPress comes with a large array of blogging-specific features out of the box. These include, but are not limited to, things such as comments, blog posts, categories and tags, etc.

Now, it’s obvious that most of these features are vital for running and managing a blog site. However, when building a non-blog site, a good number of such features may not prove useful. We can, obviously, choose to leave them as they are.

But what about things on the front end? If we’re totally doing away with the blog posts, won’t blog archives give a “no posts found” message to users? What about the “Uncategorized” category? Such taxonomies too tend to have archives of their own.

The easiest way to fix this is to disable the archives altogether. Beyond that, we can also choose to disable many other blog-focused features.

Putting Together a Non-blog WordPress Website

Before going any further, let’s just face the truth: WordPress, in its current shape and form, expects its users to write and publish posts. If all you’re hoping to do is build a static site with a given number of pages, and have no requirement of publishing or regularly updating posts and other forms of content, the blogging sections are redundant.

Thus, it’s essential for us to tell WordPress that we don’t need the default post archives, taxonomy or author archives, and so on. The following code, for example, helps you remove all default blog pages and archives from your site:

/* Registering redirect action callback */
add_action('template_redirect', 'sp_remove_blog');
/* Removing blog from our site */
function sp_remove_blog(){
  //Works on archive template, single post template or index
  if( is_archive() || is_single() || is_home() ) {
    global $wp_query;
    $wp_query->set_404(); //404 not found
  }
}

The code above disables all blog archives, single post templates as well as blog index templates. Now, WordPress will redirect users from single post templates or blog archives to a 404 page. You can further set custom redirects in your .htaccess file, via a WordPress plugin, or in the code itself to redirect users to a specific page in lieu of 404 page, even the home page!

The above code should ideally be placed in the functions.php file of your theme or child theme. This step is necessary to prevent the creation of empty archive pages that may otherwise hurt your search rank. With that said, you can also, to some extent, disable several archives by means of a good SEO plugin, such as Yoast SEO (refer to plugin-specific documentation for detailed guidelines related to the same).

Finding a Non-blog WordPress Theme

There’s no shortage of WordPress themes to choose from. Even for non-blog websites, there are plenty of amazing WordPress themes out there both in free and premium variants.

Now, it goes without saying that you should pick your WordPress theme only from reliable sources. It’s very easy to fall prey to a bad WordPress theme and get your website compromised or hacked with minutes.

As far as free WordPress themes are concerned, the only place that you should look is the official theme repository. WordPress themes in the repo are quality-tested and generally come with better-quality code. Above everything else, free WordPress themes in the official repository are devoid of malicious code or malware.

For non-blog websites, the official repository has several tags that you can use to shortlist the perfect theme. For example, the “Education” feature filter generally provides themes meant for education-specific sites, but you can use these on virtually any non-blog site. The same applies to the “Holiday” filter as well.

Non blog site WordPress theme

When selecting a premium WordPress theme, make sure you opt for a reputed theme seller. Furthermore, the tags or genres of themes that you should focus on are commonly termed as “Business” or “Corporate” WordPress themes. Most such themes tend to come with a custom blog page template or layout, which should not be much of a worry as you would have disabled the archive page display using the above code anyway.

However, there is one particular step of caution that you should take when picking a WordPress theme for your non-blog website. By all means, avoid WordPress themes that come loaded with a heavy range of “custom” features, especially ones with custom shortcodes, custom buttons, custom page templates, and so on. Such WordPress themes tend to work out of the box only when you’re using WordPress the way it’s supposed to be. When you’re attempting to build a truly non-blog website in WordPress, the custom page templates and shortcodes can only get in the way. What will you do with a grid archive blog page template when you do not have blog posts to display in the first place?

Certain premium WordPress themes, such as Divi by Elegant Themes, are an exception to the above rule, as these themes tend to have an ecosystem and pre-made templates of their own. You can, in fact, select a Business template in Divi and have a non-blog site imported to your WordPress installation in no time! But for the most part, it’s preferable to use a series of WordPress plugins to achieve such customized functionality. Speaking of WordPress plugins …

WordPress Plugins for Building Non-Blog Websites

Nowadays, it’s become a norm to turn towards WordPress plugins for extending and getting more out of WordPress. With such a large range of WordPress plugins at our disposal, it’s only natural to make use of some useful plugins to further improve our site.

While the common nature of WordPress plugins — such as those for SEO or security — tend to remain the same for both blogging and non-blogging sites, we can employ a couple specialized WordPress plugins that are specifically meant for non-blogging projects.

To begin with, the Disable Comments WordPress plugin can help you disable comments globally on your site. This means all instances of comment management and moderation, as well as comment forms on the front end, are eliminated from your non-blog site. Not only can this ensure that you don’t have to deal with spam anymore, but the Disable Comments plugin can also de-clutter your WordPress admin panel by removing the comment-related items from WordPress Dashboard, admin menu, admin panel, etc.

Next, the Google XML Sitemaps plugin can prove useful for non-blog sites as well. As the name suggests, this particular plugin helps you create and manage your sitemaps more efficiently. It’s recommended that you use a dedicated sitemaps plugin, because there will be several aspects of your site that you would not want to include in your sitemap — particularly ones related to blogging, such as taxonomy archives. Using a specialized sitemaps or SEO plugin can help you ensure search engines are not crawling any unwanted section of you non-blog website.

Managing Content on a Non-blog Website

Now, at this stage you’ve installed some useful WordPress plugins and also eliminated blogging-specific features from your WordPress installation.

You’ve also shortlisted a good WordPress theme that suits the needs and requirements of your non-blog site.

Naturally, it’s time to get things started. Generally, for a non-blog site, you’ll mostly be working with pages. Depending on your site’s needs, you may add as many pages as necessary. However, there’s generally a three-step model to follow.

The first step, obviously, is to add a custom home page. You can navigate to your site’s Reading submenu under the Settings menu, and then specify a custom home page therein. Often, the WordPress theme that you choose will have a custom home page template that you can use on the given page.

Reading settings

The second step is to add the required pages to your site and build your content. Since the Pages post type in WordPress doesn’t have categories or tags associated with it as taxonomies, you can simply place your content and perhaps specify a hierarchy if needed, in the form of child pages. It might be a good idea to make use of a page builder plugin at this point.

Elementor, for example, comes with a preset range of elements that you can add to your pages’ content and give your website a more unique look.

Finally, you can also add custom post types to your site. For example, testimonials and other custom elements can be shown as custom post types. Jetpack, the popular WordPress plugin, comes with Testimonial and Portfolio post types, though for more complex post types you can make use of a plugin such as Custom Post Type UI.

Summary

So there you have it! It’s fairly easy to build a non-blog website in WordPress and the entire process can be accomplished in simple steps. All that’s needed is to disable the blogging-specific features and then turn towards WordPress pages (and, if required, custom post types), and get the job done!

WordPress is the world’s most popular content management system. Naturally, it goes without saying that it can, and does, very effectively empower both blogging and non-blogging websites. As a result, WordPress is a good choice for building non-blog sites, and if you’re planning to build one anytime soon, you should consider giving WordPress a spin!

Frequently Asked Questions (FAQs) about Using WordPress for Non-Blog Websites

How can I use WordPress for a non-blog website?

WordPress is a versatile platform that can be used for more than just blogging. To use WordPress for a non-blog website, you need to first install WordPress on your hosting account. Then, choose a theme that suits your business or personal needs. There are many free and premium themes available that are designed specifically for non-blog websites. Once you’ve chosen a theme, you can customize it to fit your brand and content. You can add pages, create a menu, and add widgets to your site. You can also use plugins to add functionality to your site, such as contact forms, galleries, and e-commerce capabilities.

Can I remove the blog feature from my WordPress site?

Yes, you can remove the blog feature from your WordPress site. To do this, you need to go to your WordPress dashboard, then to Settings > Reading. Under “Your homepage displays”, select “A static page”. Then, choose the page you want to set as your homepage. If you don’t want to display any posts on your site, you can simply not create any, or delete any existing ones.

What are some good themes for non-blog WordPress sites?

There are many great themes available for non-blog WordPress sites. Some popular ones include Divi, Astra, and OceanWP. These themes are highly customizable and come with a variety of features that make it easy to create a professional-looking website without any coding knowledge.

Can I use WordPress to create an e-commerce site?

Yes, you can use WordPress to create an e-commerce site. There are several plugins available that can add e-commerce functionality to your WordPress site, the most popular being WooCommerce. With WooCommerce, you can sell physical and digital products, manage inventory and shipping, take secure payments, and sort taxes automatically.

How can I optimize my non-blog WordPress site for SEO?

Optimizing your non-blog WordPress site for SEO involves several steps. First, make sure your site is mobile-friendly, as this is a ranking factor for Google. Second, use an SEO plugin like Yoast SEO to help you optimize your content and meta descriptions. Third, make sure your site loads quickly, as page speed is another ranking factor. Finally, create high-quality content that provides value to your visitors, as this can help improve your site’s visibility in search engine results.

Can I add a contact form to my non-blog WordPress site?

Yes, you can add a contact form to your non-blog WordPress site. There are several plugins available that allow you to easily add a contact form to your site, such as Contact Form 7 and WPForms. These plugins allow you to create custom forms and add them to your site using a shortcode.

How can I add a gallery to my non-blog WordPress site?

You can add a gallery to your non-blog WordPress site using a plugin like NextGEN Gallery or Envira Gallery. These plugins allow you to create beautiful, responsive galleries and add them to your site using a shortcode.

Can I use WordPress to create a portfolio site?

Yes, you can use WordPress to create a portfolio site. There are many themes available that are designed specifically for portfolio sites, and there are also plugins available that can add portfolio functionality to your site.

How can I add social media buttons to my non-blog WordPress site?

You can add social media buttons to your non-blog WordPress site using a plugin like Social Media Share Buttons & Social Sharing Icons. This plugin allows you to add share buttons for a variety of social media platforms to your site, and you can customize the appearance of the buttons to match your site’s design.

Can I use WordPress to create a membership site?

Yes, you can use WordPress to create a membership site. There are several plugins available that can add membership functionality to your WordPress site, such as MemberPress and Restrict Content Pro. These plugins allow you to create membership levels, restrict content based on membership level, and charge for access to your content.

Sufyan bin UzayrSufyan bin Uzayr
View Author

Sufyan bin Uzayr is a writer, web developer, educator and coffee-lover. He writes for multiple publications related to technology, programming and current affairs. Sufyan is a published author having written several books so far, including "Learning WordPress REST API" and "VuePress Quick Start Guide". You can learn more about his works at his website.

blogWordPressWordPress-hubWordPress-tutorials
Share this article
Read Next
Get the freshest news and resources for developers, designers and digital creators in your inbox each week