
Untitled
By: a guest on
Apr 13th, 2012 | syntax:
None | size: 1.43 KB | hits: 3 | expires: Never
<div class="track-listing">
<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>
<div class="music tracks">
<?php query_posts('showposts=65&cat=4'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="track">
<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>
<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>
<div class="buttons">
<a href="<?php the_permalink(); ?>" class="listen"> </a>
<a href="<?php echo get_post_meta($post->ID, 'Download or Buy Link', true); ?>" target="_blank" class="download"> </a>
</div>
</div>
<?php endwhile; endif; ?></div>
<div class="breaker"></div>
</div>