10 More beautiful websites using WordPress as CMS

Loving WordPress is SO easy! You got thousands of great looking blogs, custom themes, free themes, premium themes and designers go beyond that by using WordPress as CMS for their non-blog projects. A while back I showed you 10 non-blog websites powered by WordPress, and now it’s time to take a look at 10 more!

If you have any additions to the list and wish to suggest a website for a future post, do so by adding a comment.

1. ProBar

1-ProBar-theprobar.com

Visit ProBar

2. Krispy Krush

2-Krispy-Krush­www.krispykrush.com

Visit Krispy Krush

3. The Salon

3-The-Salon-www.thesalonhair.com

Visit The Salon
Click here to read the full blog post!

A Look Into the WordPress Themes’ Options Pages

For a long while the option panels where something that people could only find in premium (commercial) themes, and for a good reason. The pricing of their licenses allowed the premium theme developers to invest more time in giving theme users the ways to do through these panels what they could not do through coding.

With the buzz created around these themes, regular users became aware of what could really be achieved, and thus, those that could not afford the license of a premium theme, became more selective with the free ones. A good-looking theme was not enough anymore, and WordPress developers realized it.

A good premium theme would bring its developer not only a good amount of money, but also recognition in the community, and this is where the free theme developers scored their biggest points. Now that their “turf” was endangered they had to react, and they did. For premium themes like Thesis or WP Unlimited, users have now alternatives like Thematic, Hybrid, Carrington, WP Framework or my own (even if not a framework) Simple Balance.

Why should free theme developers consider adding an options page?

Because being “cool” is just not enough anymore. Theme developers need to learn how to be useful. Free stuff can be either useless and ignored or useful and praised. I’m yet to see the developer offering a free theme without gaining something from it, be it awareness, expertise, backlinks, donation money, you name it! But none of these are achieved through an uncompetitive – even if free – product.
Click here to read the full blog post!

10 Beautiful Non-Blog Websites Powered by WordPress

The time when WordPress was used strictly as a blog platform is long gone. WordPress has evolved into a mature CMS that gives designers and developers the right tools to create amazing non-blog websites for their clients. As proof for that stand these 10 beautiful websites powered by WordPress.

FernWoodCoffee.com

fernwoodcoffee.com

Visit website

Herout-Caves.com

herout-caves.com

Visit website
Click here to read the full blog post!

WordPress Powered Websites – The Real Deal

By now, you should know that I’m a WordPress fan. While most people regard it as a simple blogging platform, some see beyond that and realize that WordPress is a very capable CMS.

While working with it as a website CMS will not allow too many customizations for entry-level developers or users, in the hands of a pro WordPress is ready to perform miracles.

The advantages of WordPress powered websites

There are quite a bunch of advantages when developing websites using WordPress as CMS, but the most important are:

  • Productivity – A lot less time spent on development, which guarantees a lower cost and still high quality;
  • Ease of use – Both client-side and developer-side. The amount of tutorials, plugins and support groups available out there is a divine gift;
  • Updates – The WordPress community is very involved in keeping the project up to date and bug free and the updates are so easy to apply.

It’s enough to run a search on Google and you’ll see how many people praise the power of WordPress but instead of using words, this time I’ll use results.
Click here to read the full blog post!

Consider This Before Getting a Custom Blog Design

Today I’ve received an email that made me think about this subject. Somebody asked me to confirm that a design agency that I’ve never heard of before, has done the design you see on Blogsessive. Obviously, I replied and told him that Blogsessive is a custom design done by yours truly, and any agency (with one exception) that would proud themselves with Blogsessive’s theme would be a fraud.

After hearing the price for which that agency was going to create something similar, the following thoughts started taking shape:

  • Why would you proud yourself with the work of someone else?
  • Why think these things would not surface?
  • Why roll out a low-ball quote for something that’s worth much more, or that you cannot deliver, but still state you can.

Before getting a custom design for you blog, here are some things you should consider.
Click here to read the full blog post!

WordPress How To: Latest Posts by Category Archive

WordPress - Latest posts by categoryOne technique that is most common with WordPress magazine or news style themes is the display of an archive of the latest posts by category, as simple titles or with post excerpts. This is useful for the previously mentioned theme styles, but not only. It can be used to set up custom blog homepages, 404 pages, landing pages or even a special archive page.

This tutorial will help you build a ‘Latest Posts by Category Archive‘ in a very easy way. The widths in the CSS styling presented below have been calculated based on the default WordPress theme, assuming that is the most common theme available to anyone.

If you are looking for a plugin to generate such an archive, please check out: WP Plugin: Latest Posts by Category Archive.

Setting up the page template

Open up you favorite code editor and create a blank document. Save the document as ‘category-archive.php’ (or any other name you’d prefer) in the default WordPress theme directory (wp-content/themes/default).

The first step is to asign our new template a name and a page-like structure, so based on the default theme’s page template, the code you should paste in your new document is:

< ?php
/*
Template Name: Category Archive
*/
?>

< ?php get_header(); ?>

<div id="content" class="narrowcolumn">

	< ?php if (have_posts()) : while (have_posts()) : the_post(); ?>
	<div class="post" id="post-<?php the_ID(); ?>">
	<h2>< ?php the_title(); ?></h2>
		<div class="entry">
			< ?php the_content('<p class="serif">Read the rest of this page &raquo;'); ?>

			< ?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>

		</div>
	</div>
	< ?php endwhile; endif; ?>

	<!-- Category Archive Start -->
	<!-- Category Archive End -->

</div>

< ?php get_sidebar(); ?>

< ?php get_footer(); ?>

The template above will make sure to display the page name you set up, and also, any additional content you might want to add before the archive, from you WordPress page editor. We will be adding our ‘latest posts by category’ code between the ‘Category Archive Start’ and ‘Category Archive End’ comments.
Click here to read the full blog post!

10 Must-See Videos on WordPress.TV

As some of you might already know, back on January 17th, the folks at Automattic have launched WordPress.TV, a website they plan on turning into “Your Visual Resource for All Things WordPress”.

This is a definitely a great project that will undoubtedly become a WordPress resource hot spot. On what do I base my belief? On the amazing community of people around this extraordinary blogging (and not only) platform that is WordPress.

It’s enough to check out their support forums and see the kind of involvement that people show, how willing they are to help, solve problems and answer questions. So yes, I think that the WordPress TV will be a success.

The reasons behind this launch are simple. The WordPress community needs a place where video information (news, tutorials and so on) finds its way to people, after passing through a certain quality filter, where it will be kept up to date with ad/spam free.

By the looks of it, after only one week of existence, the community response is amazing.

So, in case you’ve missed the launch (but not only for this reason), in this post I’m going to guide you to 10 must-see videos on WordPress.TV.
Click here to read the full blog post!

How to Add Your Logo to Simple Balance

By popular demand, I decided to publish a short tutorial on how to add your own logo to the Simple Balance WordPress theme.

So, in order to achieve this we’ll walk through the following steps:

  1. The logo image guidelines and instructions;
  2. Files to update;
  3. Code explanation.


Click here to read the full blog post!

Feedsessive – Free, Simple RSS Icon Pack

Free Simple RSS Icons

It’s time for a new freebie release! Here is Feedsessive, a free, simple and elegant RSS icon pack for you to use however you wish, in either personal or professional projects, with no restriction.

These days I’ve been working on a new project and I needed an RSS icon that is simple and elegant, and after designing one to use in my project, I decided to create a few variations and release them as a pack for those who might need it.

Feedsessive features 50 free RSS icons, split into 2 two design styles (basic and outlined), each with 25 color variation.

All the RSS icons are available in 3 formats:

  • EPS (vector) format
  • PDF format
  • Transparent PNG format at 300dpi

Download Feedsessive
* Packed size: 2.22 Mb
Click here to read the full blog post!

The Blog Post Footer Design Manifesto

It’s a proven fact that a blog post’s footer is a “pause zone”. That’s why, people encourage you to place ads there, because you have more chances of catching the eye of your readers.

But, if it is a good place to place ads, why not take it one step further. Sure, some bloggers placed links to social media websites or to related blog posts in that are, but not giving it its deserved design attention minimizes its impact on readers.

Why not treat that area as a separate element of your blog’s structure? Why not take advantage of any of its effects:

  • Encourage further reading;
  • Promote featured content;
  • Traffic growth;
  • Bounce rate reduction;
  • Social media exposure;
  • Encourage subscription and many more.

As a reader of Blogsessive you must have noticed each post’s footer, and from my experience as Blogsessive’s webmaster, I can confirm that the results are amazing.
Click here to read the full blog post!