Advertisement
Guest User

SteveAgl

a guest
Feb 28th, 2008
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.64 KB | None | 0 0
  1. <?php get_header(); ?>
  2.     <div id="content">
  3.         <img align="center" src="wp-content/themes/cms2/img/qs.jpg" alt="" />
  4.     <br>
  5.  
  6.         <?php query_posts($query_string . '&cat=-19') ?>
  7.         <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  8.  
  9.  
  10.  
  11.             <div class="post<?php if ( in_category('40') ) { echo "-evid"; } ?>" id="post-<?php the_ID(); ?>">
  12.  
  13.                 <div class="entry">
  14.                     <p>&nbsp </p>
  15.                     <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <span class="post-views"><?php if(function_exists('the_views')) { the_views(); } ?></span>
  16.                     <div class="post-content">
  17.                     <?php the_content(  '<span class="continua-leggere">Continua a leggere  &raquo;</span><br> '  ); ?>
  18.        
  19.                     <span class="post-calendar">Pubblicato da <?php the_author() ?>, il <?php the_time('j F Y') ?></span>
  20.                     <p>&nbsp </p>
  21.                     <div class="postmetadata"><span class="post-cat">  <b>Pubblicato in  <?php the_category(', ') ?></b> <p>&nbsp </p></span>
  22.                         <p><img align="center" src="wp-content/themes/cms2/img/sep-post.gif" alt="" /></p> <p>&nbsp </p><p>&nbsp </p>
  23.                     </div>
  24.                 </div> <p>&nbsp </p>
  25.  
  26.             </div>
  27.  
  28.     </div>
  29.  
  30.         <?php endwhile; ?>
  31.    
  32.             <div align="center" class="navigation">
  33.                 <span class="navigation-b"></span><?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
  34.             </div>
  35.         <?php else : ?>
  36.    
  37.             <h2 class="center">Nessun Risultato</h2>
  38.             <p class="center">Spiacenti, la ricerca non ha prodotto nessun risultato.</p>
  39.        
  40.         <?php endif; ?>
  41.    
  42.     </div><!--/content -->
  43.    
  44. <?php get_sidebar(); ?>
  45.  
  46. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement