Advertisement
Guest User

Untitled

a guest
Jan 19th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.29 KB | None | 0 0
  1. <?php // Now Playing posts loop
  2.  
  3.                     global $post;
  4.                                                
  5.                     $args = array(
  6.                        
  7.                         'numberposts' => 1,
  8.                         'cat' => 278
  9.    
  10.                     );
  11.                        
  12.                     $vidposts = get_posts( $args );
  13.                    
  14.                    
  15.                     foreach( $vidposts as $post ) : setup_postdata( $post );
  16.  
  17.                 ?>
  18.  
  19.                     <div class="home-post">
  20.            
  21.                         <div class="home-thumbnail homepage-thumb">
  22.            
  23.                             <?php if ( has_post_thumbnail() ): ?>
  24.            
  25.                                 <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail('homepage-thumb'); ?></a>
  26.            
  27.                             <?php endif; ?>
  28.                
  29.                         </div><!-- .home-thumbnail -->
  30.                        
  31.                             <h4><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h4>
  32.                            
  33.                             <?php the_excerpt(); ?>
  34.                            
  35.                             <?php do_action('wanda_after_podcast_post'); ?>
  36.                            
  37.                         <div class="clear"></div>
  38.                        
  39.                         <div class="wanda-filed-under">
  40.                             Filed Under: <?php the_category(', '); ?> | <?php comments_popup_link(); ?>
  41.                         </div>
  42.                
  43.                     </div> <!-- .home-post -->
  44.                
  45.                 <?php endforeach;?>
  46.                
  47.                 <?php wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement