On May 31, 2012 at 3:14 pm
Go to Appearance> Editor and select “page-blog.php” from right and find these lines:
<?php $loop = new WP_Query( array( 'cat' => ''.$zn_blog = of_get_option('blog_cat').'' ) ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
and replace it with:
<?php
$args = array(
'cat' => ''.$zn_blog = of_get_option('blog_cat').'',
'post_type' => 'post',
'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1),
);
query_posts($args);
while (have_posts()) : the_post();?>