gallery.php lines 54,55,56
Before:
- Code: Select all
<?php $temp_query = $wp_query; ?>
<?php query_posts('category_name=' . get_option('gallery-category') . '&showposts=' . get_option('gallery-items')); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
After:
- Code: Select all
<?php $temp_query = $wp_query; $wp_query = null; $wp_query = new WP_Query(); ?>
<?php $wp_query->query('category_name=' . get_option('gallery-category') . '&showposts=' . get_option('gallery-items')); ?>
<?php if ($wp_query->have_posts()) : while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
Anyway, hope this work for others.









