Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 13th, 2012  |  syntax: None  |  size: 1.43 KB  |  hits: 3  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.                                         <div class="track-listing">  
  2.                                         <div class="date"><span><?php echo get_the_time('D'); ?></span><span class="date"><?php echo get_the_time('n'); ?></span><span class="month"><?php echo get_the_time('M'); ?></span><span class="year"><?php echo get_the_time('Y'); ?></span></div>        
  3.                                         <div class="music tracks">     
  4.                                         <?php query_posts('showposts=65&cat=4'); ?>    
  5.                                     <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  6.                                         <div class="track">
  7.                         <a href="<?php the_permalink(); ?>"><?php $image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 42,42 ); ?><img class="thumb" src="<?php echo $image[0]; ?>"></a>
  8.                         <a class="text " href="<?php the_permalink(); ?>" title="<?php echo get_post_meta($post->ID, 'Artist', true); ?> - <?php the_title(); ?>"><?php echo get_post_meta($post->ID, 'Artist', true); ?></span> - <span class="title"><?php the_title(); ?></a>
  9.                         <div class="buttons">
  10.                                 <a href="<?php the_permalink(); ?>" class="listen">&nbsp;</a>
  11.                                 <a href="<?php echo get_post_meta($post->ID, 'Download or Buy Link', true); ?>" target="_blank" class="download">&nbsp;</a>
  12.                         </div>
  13.                     </div>        
  14.                 <?php endwhile; endif; ?></div>
  15.                 <div class="breaker"></div>
  16.             </div>