Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div id="destaques">
- <section class="sec-destaques">
- <?php query_posts('category_name=destaques&offset=0&showposts=1');?>
- <?php if(have_posts()): while(have_posts()): the_post();?>
- <div class="post-destaques">
- <a href="<?php the_Permalink();?>"><?php the_post_thumbnail();?></a>
- <h2><a href="<?php the_Permalink();?>"><?php the_title();?></a></h2>
- <div class="info-destaques">
- <ul>
- <li class="destaques-autor"> <?php the_author();?> </li>
- <li class="destaques-views"> <?php if(function_exists('the_views')) {the_views();}?> </li>
- <li class="destaques-comment"> <?php comments_number('0','1','%'); ?></li>
- </ul>
- </div>
- </div>
- <?php endwhile; else:?>
- <?php endif;?>
- <div class="list-dest">
- <ul>
- <?php query_posts('category_name=destaques&offset=2&showposts=2');?>
- <?php if(have_posts()): while(have_posts()): the_post();?>
- <li>
- <a href="<?php the_Permalink();?>"><?php the_post_thumbnail();?></a>
- <h2><a href="<?php the_Permalink(); ?>"><?php the_title();?></a></h2>
- </li>
- <?php endwhile; else:?>
- <?php endif;?>
- </ul>
- </div>
- </section>
- <section class="sec-destaques">
- <?php query_posts('category_name=destaques&offset=0&showposts=1');?>
- <?php if(have_posts()): while(have_posts()): the_post();?>
- <div class="post-destaques">
- <a href="<?php the_Permalink();?>"><?php the_post_thumbnail();?></a>
- <h2><a href="<?php the_Permalink();?>"><?php the_title();?></a></h2>
- <div class="info-destaques">
- <ul>
- <li class="destaques-autor"> <?php the_author();?> </li>
- <li class="destaques-views"> <?php if(function_exists('the_views')) {the_views();}?> </li>
- <li class="destaques-comment"> <?php comments_number('0','1','%'); ?></li>
- </ul>
- </div>
- </div>
- <?php endwhile; else:?>
- <?php endif;?>
- <div class="list-dest">
- <ul>
- <?php query_posts('category_name=destaques&offset=2&showposts=2');?>
- <?php if(have_posts()): while(have_posts()): the_post();?>
- <li>
- <a href="<?php the_Permalink();?>"><?php the_post_thumbnail();?></a>
- <h2><a href="<?php the_Permalink(); ?>"><?php the_title();?></a></h2>
- </li>
- <?php endwhile; else:?>
- <?php endif;?>
- </ul>
- </div>
- </section>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement