Advertisement
aadf

home-slider

Sep 4th, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.38 KB | None | 0 0
  1. <article class="content-tiles-wrapper">
  2.    
  3.         <div class="container">
  4.        
  5.             <div class="row">
  6.                    
  7.                     <div class="span4">
  8.                    
  9.                         <h2>News</h2>
  10.                        
  11.                         <?php query_posts('category_name=news&showposts=1'); ?>
  12.                        
  13.                         <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  14.                        
  15.                         <a href="<?php the_permalink(); ?>" rel=-"bookmark" title="Permalink <?php the_title_attribute(); ?>"><?php the_post_thumbnail('alt-content-tile-thumb');?></a>
  16.                                
  17.                             <h4><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permalink <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h4>
  18.                                
  19.                                 <p><?php custom_excerpt(); ?></p>
  20.                                                            
  21.                         <?php endwhile; else: ?>
  22.                            
  23.                             <p>Sorry, there are no posts to display</p>
  24.                        
  25.                         <?php endif; ?>
  26.                        
  27.                         <?php rewind_posts(); ?>
  28.                        
  29.                         <div class="text-title-list">
  30.                        
  31.                             <ul>
  32.                        
  33.                             <?php query_posts('category_name=news&showposts=4&offset=1'); ?>
  34.                            
  35.                             <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  36.                            
  37.                                 <li><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permalink <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
  38.                                
  39.                             <?php endwhile; ?>
  40.                            
  41.                             <?php endif; ?>
  42.                            
  43.                             </ul>
  44.                            
  45.                         </div>
  46.            
  47.                     </div><!-- end span4 -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement