Uncle Twisty
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Figured it out:
Wasn’t ending the second column.
Found a solution jslanglois:
you have to reset the query<?php get_template_part( 'loop', 'page' ); ?> <?php $temp_query = $wp_query; ?> <?php query_posts('cat=4&showposts=5'); ?> <?php while (have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <div class="entry-summary"> <?php the_excerpt(); ?> </div> </div> <?php endwhile; ?> <?php wp_reset_query(); // reset the query ?> </div>it worked for me hopefully it will work for you.
I’m having the same issue, would love to resolve it.
Forum: Fixing WordPress
In reply to: WordPress is systematically scrambling my headerthanks guys, my computer is full of shit i dont need, I’ll give that a shot. either way thanks..
Viewing 4 replies - 1 through 4 (of 4 total)