Adoway
Adoway WordPress theme is a 2 columns fixed width WP template by MagPress.com. This theme has theme options, featured slider and categories, Adsense ready, etc.
Tags: Adsense Ready, Custom Homepage, Custom Menu, Featured Content, Fixed Width, Right Sidebar, Sidebar Footer, Theme Options, Threaded Comments, Twitter Ready, Two Columns, White, Widget Ready
Adoway Theme looks great.
Love that Adoway theme.
Somehow, I encountered a problem. Nomatter what Category I go, it will always show me all posts of the blog instead of the category posts.
try open index.php and replace this code
[php]<?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(‘showposts=&cat=&paged=’ . $paged);?>
<?php $postcounter = 0; if ($wp_query->have_posts()) : ?>
<?php while ($wp_query->have_posts()) : $postcounter = $postcounter + 1; $wp_query->the_post();?>[/php]
with
[php]<?php $postcounter = 0; if ( have_posts()) : while ( have_posts()) : $postcounter = $postcounter + 1; the_post(); ?>[/php]
see if its working now.