Advertisement
Guest User

Untitled

a guest
Jun 24th, 2013
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.31 KB | None | 0 0
  1. <?php
  2.   query_posts ( array( 'post_type' => 'ait-dir-items' , 'category__and' => array(6,32), 'posts_per_page' => 12, 'orderby' => 'title', 'order' => 'DESC' ) );
  3.   if ( have_posts() ) : while ( have_posts() ) : the_post();
  4. ?>
  5.    
  6.     <!-- article -->
  7.     <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  8.        
  9.             <!-- post thumbnail -->
  10.             <?php if ( has_post_thumbnail()) : ?>
  11.                 <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
  12.                     <?php the_post_thumbnail(); ?>
  13.                 </a>
  14.             <?php endif; ?>
  15.             <!-- /post thumbnail -->
  16.            
  17.             <!-- post title -->
  18.             <h1>
  19.                 <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
  20.             </h1>
  21.             <!-- /post title -->
  22.            
  23.             <span class="date"><?php the_time('F j, Y'); ?> <?php the_time('g:i a'); ?></span>
  24.            
  25.             <?php the_excerpt(); ?>
  26.  
  27.     </article>
  28.     <!-- /article -->
  29.        
  30.     <?php endwhile; ?>
  31.    
  32.     <?php else: ?>
  33.    
  34.         <!-- article -->
  35.         <article>
  36.             <h1><?php _e( 'Sorry, nothing to display.'); ?></h1>
  37.         </article>
  38.         <!-- /article -->
  39.    
  40. <?php endif; wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement