Advertisement
rodrigofbm

HTML

Oct 10th, 2015
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.41 KB | None | 0 0
  1. <div id="destaques">
  2.  
  3.     <section class="sec-destaques">
  4.        
  5.        
  6.         <?php query_posts('category_name=destaques&offset=0&showposts=1');?>
  7.         <?php if(have_posts()): while(have_posts()): the_post();?>
  8.         <div class="post-destaques">
  9.             <a href="<?php the_Permalink();?>"><?php the_post_thumbnail();?></a>
  10.            
  11.                 <h2><a href="<?php the_Permalink();?>"><?php the_title();?></a></h2>
  12.                
  13.                 <div class="info-destaques">
  14.                     <ul>
  15.                         <li class="destaques-autor"> <?php the_author();?> </li>
  16.                         <li class="destaques-views"> <?php if(function_exists('the_views')) {the_views();}?> </li>
  17.                         <li class="destaques-comment"> <?php comments_number('0','1','%'); ?></li>
  18.            
  19.                     </ul>
  20.                
  21.                
  22.                 </div>
  23.                
  24.                
  25.         </div>
  26.         <?php endwhile; else:?>
  27.         <?php endif;?>
  28.        
  29.        
  30.     <div class="list-dest">
  31.             <ul>
  32.                 <?php query_posts('category_name=destaques&offset=2&showposts=2');?>
  33.                 <?php if(have_posts()): while(have_posts()): the_post();?>
  34.                 <li>
  35.                     <a href="<?php the_Permalink();?>"><?php the_post_thumbnail();?></a>
  36.                     <h2><a href="<?php the_Permalink(); ?>"><?php the_title();?></a></h2>
  37.                    
  38.                 </li>
  39.                 <?php endwhile; else:?>
  40.                 <?php endif;?>
  41.             </ul>
  42.        
  43.         </div>
  44.     </section>
  45.    
  46.  
  47.        
  48.         <section class="sec-destaques">
  49.        
  50.        
  51.         <?php query_posts('category_name=destaques&offset=0&showposts=1');?>
  52.         <?php if(have_posts()): while(have_posts()): the_post();?>
  53.         <div class="post-destaques">
  54.             <a href="<?php the_Permalink();?>"><?php the_post_thumbnail();?></a>
  55.            
  56.                 <h2><a href="<?php the_Permalink();?>"><?php the_title();?></a></h2>
  57.                
  58.                 <div class="info-destaques">
  59.                     <ul>
  60.                         <li class="destaques-autor"> <?php the_author();?> </li>
  61.                         <li class="destaques-views"> <?php if(function_exists('the_views')) {the_views();}?> </li>
  62.                         <li class="destaques-comment"> <?php comments_number('0','1','%'); ?></li>
  63.            
  64.                     </ul>
  65.                
  66.                
  67.                 </div>
  68.                
  69.                
  70.         </div>
  71.         <?php endwhile; else:?>
  72.         <?php endif;?>
  73.        
  74.        
  75.     <div class="list-dest">
  76.             <ul>
  77.                 <?php query_posts('category_name=destaques&offset=2&showposts=2');?>
  78.                 <?php if(have_posts()): while(have_posts()): the_post();?>
  79.                 <li>
  80.                     <a href="<?php the_Permalink();?>"><?php the_post_thumbnail();?></a>
  81.                     <h2><a href="<?php the_Permalink(); ?>"><?php the_title();?></a></h2>
  82.                    
  83.                 </li>
  84.                 <?php endwhile; else:?>
  85.                 <?php endif;?>
  86.             </ul>
  87.        
  88.         </div>
  89.     </section>
  90.        
  91.    
  92. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement