Advertisement
Guest User

Tjobbe

a guest
Nov 30th, 2010
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php get_sidebar(); ?>
  3.  
  4.     <div id="content">
  5.  
  6.     <?php query_posts('cat=-15'); ?>
  7.     <?php if (have_posts()) : ?>
  8.  
  9.         <?php while (have_posts()) : the_post(); ?>
  10.  
  11.                 <div class="entry">
  12.                     <p><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></p>
  13.                     <?php
  14.                     if ( has_post_thumbnail() ) { ?>
  15.                     <a href="<?php the_permalink() ?>"><?php the_post_thumbnail(); ?></a>
  16.                     <?php } else {
  17.                     } ?>                   
  18.                 </div>
  19.  
  20.         <?php endwhile; ?>
  21.  
  22.  
  23.     <?php else : ?>
  24.  
  25.         <h2 class="center">Not Found</h2>
  26.         <p class="center">Sorry, but you are looking for something that isn't here.</p>
  27.         <?php get_search_form(); ?>
  28.  
  29.     <?php endif; ?>
  30.  
  31.     </div><!--//content-->
  32.  
  33. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement