By Louis Lazaris on May 25th, 2009
Categories: Graphic Design & Layout, Web Design Articles | 31 Comments
Whatever industry you happen to be in, you want to stand out from the crowd and be unique, and not give the impression that your online presence is just a slightly modified cut and paste job. Of course, if you’re depending on a pre-built content management framework like WordPress for the core of your blog or website, then that could prevent your online presence from truly standing out.
So, in this article I’ll run through 10 fairly straightforward ways that a beginning developer or blogger can customize their WordPress theme to ensure it doesn’t “look like a blog” — at least to a certain degree. Keep in mind that the goal here is not to hide the fact that a website is using WordPress — that’s quite difficult, if not impossible. The ultimate goal here is to help your website have a seamless, consistent, look and feel that does not necessarily scream “WordPress-driven” from the instant the home page loads up.
NOTE: These tips are for beginning WP developers who are coding themes for their own site, or experimenting with theme development. Most likely, these tips would not apply to custom downloaded themes that are pre-built and probably already have many of these customizations.
The sidebar in WordPress is a dead “giveaway” when a user visits your site. The sidebar will have default titles like “Blogroll”, “Categories” and “Archives”. You can easily change the text of these titles, and which sections are displayed, by editing the sidebar.php file in the theme directory. Also, WordPress displays a different sidebar depending on what page of the site you’re on, which can also be changed. I personally prefer to display virtually the same sidebar on all pages, to keep the site consistent.
Even if you’re not familiar with PHP, WordPress code is very developer-friendly, and easy to work with. A simple knowledge of how functions are called and how to open and close if statements is often more than enough to help you customize some of the sidebar code.
Also, you can easily duplicate and customize certain sidebar sections. Look at the sidebar here on Impressive Webs: You’ll notice there’s a list for “Articles” and “Tutorials”. This is done by duplicating the “categories” section and controlling what categories are displayed using parameters inside the function call for that particular section.
Check out the WordPress Codex for further information on customizing category listings.
One of the most obvious ways to customize the look of your blog’s urls is to use clean permalinks, rather than the default querystring driven url structure. But that’s an obvious one. No self-respecting blogger would fail to enable custom urls, which can be done easily through the WP dashboard.
But one thing you cannot do through the dashboard is remove the word “category” from links that point to specific categories on your site. That’s where Decategorizer comes in handy. This excellent plugin, which I’m using here on Impressive Webs, will strip the word “category” out of your WordPress urls, leaving a much cleaner experience, taking away the “blog” look and contributing to a more customized, branded feel for your website. Decategorizer will also automatically create 301 redirection for all your old category links, and works with subcategories.
The Decategorizer plugin had a few bugs, which have recently been corrected, and also requires that you install the Redirection plugin, for Decategorizer to work properly.
Be sure to read carefully the documentation and installation instructions for these plugins to ensure they are installed and functioning as expected.
Every post has “metadata” contained inside of paragraph tags at the bottom of each blog post. This data is generated dynamically through the loop that pulls your content out of the database. You can easily edit, delete, or modify any of these pieces of data that are displayed with each entry, which can be found inside of the index.php file in your theme directory. The default look for the metadata section looks like this in WordPress 2.7.1:
<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
By editing the above section of code, you can choose to display only comments and categories, and even alter the characters that are displayed. For example the » will display ». You have the option to remove those characters and use something more appropriate for your site’s look.
This is not necessarily something I would recommend, since user-contributed comments are a huge part of the blogging world, however, it should definitely be pointed out that removing the “Post a Comment” section at the bottom of every post would be a sure-fire way to adjust your blog to ensure a more customized look and feel.
While this would contribute to a “non-blog” atmosphere on your website, it is highly recommended that you keep user comments open and instead customize the look of the comment area. Of course, if you’re using WordPress purely as a content management system for developing pages instead of “blog posts” then this would be an obvious choice, and would make more sense.
Again, while this customization option is not necessarily recommended, it is certainly an effective way to customize your blog so that it does not resemble every other WordPress installation on the World Wide Web. “Tags” are keywords that you can add to individual posts in your WordPress dashboard. They are similar to categories, but provide a wider interrelationship between posts.
Tags associated with a particular post allow users to click on certain keywords to view more entries related to that keyword, similar to clicking on a specific category. Tags also provide SEO benefits, as they help Google and blog directories properly categorize your blog’s pages. So, while you do have the option to avoid using tags on your posts, thereby ensuring a cleaner look to your website, be aware of the drawbacks of doing so.
For simplicity, I personally do not use tags on Impressive Webs. I like each post to be associated with 1-3 categories, and nothing more. That’s just a personal preference to keep the content the primary focus. I prefer to attract users who will actually read the content, as opposed to the ones that are click-happy and bookmark everything.
The header.php file in WordPress’s default theme has a title bar that is coded like this:
<title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>
Once again, you can see the « character that is highly overused in the web development industry. (Not to mention that it’s actually a left quotation mark for french text!) You can replace that character with a different one, and even change the way the page titles are displayed.
You’ll notice there’s a function called wp_title that holds 3 parameters (including the « character). The third parameter tells WordPress where to display the post title — to the left or to the right of your blog name.
You also have the option to remove the function that displays your blog’s name, and instead just manually enter a more keyword-friendly title. The blog name that displays in your Dashboard under “settings” will still display your official blog name on RSS readers.
While I’ve already discussed a little bit about the sidebar, it’s worth mentioning separately that the “pages” section of the sidebar can easily serve as your main navigation bar. At first glance, nobody will even notice that this has been done.
In the default WP theme, here’s the code that generates the “pages” section of the sidebar, found in sidebar.php:
<?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?>
Simply take that piece of code and place it wherever you want your main navigation to display. Of course, you’ll have to style it to your liking, in line with your theme’s look. And most likely you’ll want to remove the title of that section. You can do that by simply removing everything after the equals sign in the single parameter, so it will look like this:
<?php wp_list_pages('title_li=' ); ?>
Use the WordPress Codex to see other ways to customize the look of the page list in the default wordpress theme.
Okay, this is not really a WordPress tip, per se. It’s more of a marketing recommendation for the purpose of more effective branding in conjunction with a site that just happens to use WordPress as its engine. Serious websites that provide significant content are viewed as “communities” or “resources”, instead of “blogs”. The word “blog” nowadays is probably more appropriate for individuals who post thoughts and musings on various personal and professional topics.
If you have long-term plans for your website, and would like to expand it into a thriving online community that is respected and recognized in your industry, then you need to view it that way from the start, and communicate that atmosphere to your users — even if you are starting out small and really are just a single “blogger” posting thoughts and musings on relevant industry matters.
While I’ve already touched on the customization of a few text elements of the default WordPress theme, there are other little text snippets that can be edited, removed, or appended to. An obvious example is the “Powered by WordPress” section in the footer. Your website’s footer seems simple, but it is potentially a significant part of your site’s look, feel, and overall image.
There are also title attributes that are embedded in anchor tags throughout the site. Here is one example, found in the index.php file:
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
The code above is the section that will display the title of each post listed on your home page. The title attribute in the anchor tag has the super-obvious text of “Permanent link to …” and then the PHP function that spits out the title. You can modify this and other default text that appears throughout your WP theme.
Nice Search is a very simple plugin that makes searches performed on your website look less “WordPress-y” and more like a custom search engine installed on your website. According to the author’s website:
“This is a really simple plugin that redirects your WordPress searches (?s=search-term) to the pretty-looking URI version: /search/search-term, and also converts spaces (%20) to plus symbols.”
Although this plugin has not been updated in some time, I do have it successfully running on WordPress 2.6.3 on another website, so it seems to be compatible with some of the more recent versions of WordPress.
I hope beginning WP theme developers, and possibly some intermediates, found these tips helpful. Most of this is compiled from my own personal, and somewhat limited experience with WordPress and PHP, so I’m sure there’s lots I’ve missed, and lots where I’ve simply stated the obvious.
I hope some of these tips will encourage “bloggers” to develop a more customized and branded look and feel to their site, allowing them to break free from blogging conformity.
Comment Rules: Please use a real name or alias. Keywords are not allowed in the "name" field. If you use keywords, your comment will be deleted, or your name will be replaced with the alias from your email address. Thank you for cooperating.
I agree with you 100%. Blogs are so common and will just get worse. Making your WP site stand out by making it look like not a blog is essential
Thanks and great tips here.
Though on your last point, I will suggest use Google custom search to give more enhance look to your search engine and better create a search page with no sidebar for maximum result.
Aside from being totally free, WordPress is also liked because of its flexibility. Individuals can utilize the templates available to fit their needs without needing to work with HTML, CSS, or some other net publishing languages. It’s the prominent answer for the bulk of Internet users that do not comprehend the components of the computer society
Really right u r . I am going to re-touch my site by following your some essential tips, thanks for sharing your ideas :)
Wordpress is so robust, we actually use it as our only web development tool. Since most of my clients are small business owners, who want to be able to update on the fly, I can’t imagine doing it any other way. And with the ability to find or create and customize templates, each one has a distinct look and feel.
Great post. I find it interesting that what makes Wordpress so universal is also what makes it so Wordpressy.
This post gives me some new thoughts about Wordpress websites.
Thanks,
Rick
I like your thoughts about being less Wordpress obvious but I have a problem with your site. I cannot get to the columns on the side of your website. I don’t know if it is just my setup but I am using Mozilla and the scroll right at the bottom of the page does not show up on your website? I had to stretch my page way beyoond what would fit on my screen and move it so I could see the sidebar.
Rick
Wordpress is now primary “tool” for my websites. The fact i can build custom plugins to get exactly what I want was a big win.
@Rick imby:
Thanks for pointing that out. Fixed. I should really spend more time on QA for my own sites! :o)
Thanks for your post,…I’m newbie and this article very usefull for me
Thank you for the energy and time devoted to compose this post which is meant to help us be more creative and influential.
I agree with the blog comment. When you tell people you have a website they understand, but if you call it a blog they seem to gloss over.
They may even stereotype you as a trendy internet user and not really take you seriously too, simply because of the general misconceptions of people’s blogs as something other than a personal website.
Great tips. Another thing you can do is remove the date from each post.
I am already using wordpress blog as website with some of your tips in action. For a business, people take a website more seriously than a blog.
Good tips, things people learn as they grow on WP … Wish I’d seen this a few years back.
But I would say the No. 1 thing that makes a blog function as a web site is the content. Job 1 is producing a fair number of standing pages with tentpole content, represented in a nav bar. (Another good plug-in is called Page Links To, which allows for a page file to immediately point anywhere. So you can add any web page to a WP nav bar.)
Definitely remove the “Blogroll,” but I think there is nothing wrong with a hybrid — and the content defines the site.
You’ve said it in details… very informative. But why you need to Make Your Blog Look Like a Website? people love blogs… people buys on blog.
Great tips. Many thanks.
Another thing I would recommend is using a custom page as the front page instead of the blog; I pushed my blog back to a different page entirely simply because I didn’t want my site to be all about the blog – I merely wanted the blog to be all about the site.
These are definitely good tips, and I’ll look into them for some major customizations to my current theme, as they’ve kind of given me some good ideas. The other thing would be to completely customize said elements, though in this respect I haven’t really done that either but left my blog’s sidebar ‘as is’. I’ll also admit that I chose to not include the sidebar on any page other than the blog as a matter of personal preference, here again to differentiate between the blog and the main site.
You can also easily customize the text used in the commenting portion of the site; for example, I edited some of the footers to certain pages in order to give the look and feel more of a personal touch (such as shortening the large amount of text and usability). On the note about tags, I feel there are more benefits than just SEO or user navigation; it also gives the user a feel for the kinds of categories being used, thus why I chose to keep my tag cloud visible. It shows that I generally write more about design or being a Las Vegas-based web designer, but occasionally also touch on personal development, problem solving, and programming, as well as a wealth of other topics.
thx for tips. all of us need article like this
This is very good stuff. It is frustrating to get stuck with something you really want to change and not know how to do it. These tips are useful to non-techies like me so I do appreciate it and will bookmark this page!
Good stuff understandable to the non-techie, thanks!
Thanks, I will try this on my website
These are great tips to revamp the look of a blog. Great write-up!
I have done almost all the things mentioned here , however still stuck up in the header and Logo. Do you have any solutions for that
Very good information. I like the ideal of not calling your site a blog to keep it more professional.
This is fantastic info. Does it apply to most or all blog sites like Blogger for instance?
Thanks for such a well compiled post. Would you be able to give me some tips on my site? It is relatively new and looking at getting the best start possible and since you look like you know what you are doing I thought I would ask. Cheers!
This is really a great article. Lots of helpful tips that one can use when starting your own online business. I don’t use tag clouds, I don’t find it neat.
Thank you man! I like your design!
Some of the tips I have followed that make my site (blog) looks like true website. Thanks
I am trying hard to change the look of my tourism blog but need a harder work :)