All pastes #2048078 Raw Edit

sidebar-media.php

public php v1 · immutable
#2048078 ·published 2011-04-19 05:06 UTC
rendered paste body
<?php/** * The Sidebar. * * @package WordPress * @subpackage Buzzkill * @since Buzzkill 1.0 */?>				<div id="sign-left">					<div class="page-title media">											</div>						<div class="subCat">						<ul>							<!-- query posts starts here -->							<?php query_posts('child_of=media'); ?>							<?php while (have_posts()) : the_post('child_of=media'); ?>																<?php $meta_values = get_post_meta($post->ID, 'mediaSub', true); ?>								<li> <a href="<?php the_permalink(); ?>"><img class="mediaSub" src="<?php bloginfo('template_url'); ?>/images/<?php echo get_post_meta($post_ID, 'mediaSub', true) ?>" alt="<?php the_title(); ?>" /></a>															<?php endwhile;?>							<!-- query posts ends here -->										</div>					</div>