Guest

Untitled

By: a guest on Feb 13th, 2012  |  syntax: None  |  size: 0.43 KB  |  hits: 36  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. <?php $temp_query = clone $wp_query; ?>
  2.  
  3.         <?php query_posts('cat=3&showposts=3'); ?>
  4.         <?php while (have_posts()) : the_post(); ?>
  5.                 <!-- specialaren här -->
  6.         <?php endwhile; ?>
  7.  
  8.         <?php $wp_query = clone $temp_query; ?>
  9.  
  10.         <!-- "standardloopen" här -->
  11.         <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  12.  
  13.         <?php the_content(); ?>
  14.  
  15. <?php endwhile; else: ?>
  16.  <h2>Hoppsan, nu blev nåt fel...</h2>
  17. <?php endif; ?>