PhpRiot

Listing 2664

Submitted by anonymous user, 2 February 2010
<?php get_header(); ?>
 
<div id="content">
 
  <?php if (have_posts()) : ?>
  <?php   if (is_home()) {  query_posts("cat=15&showposts=1"); } ?>
  <?php while (have_posts()) : the_post(); ?>
 
  <div class="post" 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="info">  </div>
 
      <div class="entry">
           <?php the_content('Read the rest of this entry &raquo;'); ?>
      </div>
 
      <div class="tags">
      <?php the_tags(' ', ', ', ''); ?>
      </div>
 
  </div>
 
<!--/post -->
<?php endwhile; ?>
 
<?php if (is_home()) { query_posts('cat=1&showposts=3'); } ?>
<?php $posts=get_posts(category=1&numberposts=3&offset=0);
foreach ($posts as $post) : start_wp(); ?>
<a href="<?php the_permalink() ?>" title="Dettagli"><img src="<?php $key="immagine_post"; echo get_post_meta($post->ID, $key, true); ?>"/></a>
<?php the_content('Read the rest of this entry &raquo;'); ?>
<?php endforeach; ?>
 
<div class="navigation"> <span class="previous-entries">
  <?php next_posts_link('Previous Entries') ?>
  </span> <span class="next-entries">
  <?php previous_posts_link('Next Entries') ?>
  </span> </div>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
<!--/content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Submit a Follow Up