Advertisement
Guest User

Pages

a guest
Feb 6th, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.90 KB | None | 0 0
  1. <?php get_header(); ?>
  2.      
  3. <div id="content">
  4.      
  5.  <div id="featured">
  6.     <!-- If home page and other pages, show featured image -->
  7.      
  8.      <?php if (have_posts()) :  ?>
  9.       <?php query_posts('showposts=1'); while (have_posts()) : the_post();  ?>
  10.       <a href="<?php the_permalink() ?>" title="<?php echo get_the_excerpt(); ?>"><?php the_post_thumbnail('featured-image');  ?></a>
  11.       <h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
  12.          <div class="featured-cat"><?php the_category(', ') ?></div>
  13.             <div class="featured-info">
  14.             <?php $myExcerpt = get_the_excerpt(); $tags = array("<p>", "</p>"); $myExcerpt = str_replace($tags, "", $myExcerpt); echo $myExcerpt; ?>
  15.             <a href="<?php the_permalink() ?>">Sigue leyendo</a>
  16.             </div><!-- /.featured-info -->
  17.      <?php endwhile;?>
  18.      <?php wp_reset_query(); ?>
  19.      <?php endif; ?>
  20.      
  21.  </div><!-- /#featured -->
  22.      
  23.  <div id="posts">
  24.    <!-- All pages show 9 thumbs with an offset of 1 -->
  25.   <?php  if (have_posts()) : ?>
  26.     <?php query_posts('posts_per_page=9&offset=1'); while ( have_posts() ) : the_post(); ?>
  27.     <?php include("incl/post.php"); ?>
  28.     <?php endwhile;?>
  29.     <?php wp_reset_query(); ?>
  30.   <?php endif; ?>
  31.      
  32.      
  33.   <div id="browsing">
  34.     <div class="browse-nav">
  35.     <div class="browse-left"><?php previous_posts_link('Anterior') ?>&nbsp;</div><!-- /.browse-left -->
  36.     <div class="browse-mid"><div class="navigation"><?php if(function_exists('pagenavi')) { pagenavi(); } ?></div></div><!-- /.browse-mid -->
  37.     <div class="browse-right"><?php next_posts_link('Siguiente') ?>&nbsp;</div><!-- /.browse-right -->
  38.     </div><!-- /.browse-nav -->
  39.     <div class="clear"></div>
  40.   </div><!--  /#browsing -->
  41.      
  42.  </div><!-- /#posts -->
  43.  </div><!-- /#content -->
  44.  <h2>Últimos Comentarios</h2>
  45. <?php bwp_get_recent_comments(); ?>
  46. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement