All pastes #2104623 Raw Edit

Anonymous

public php v1 · immutable
#2104623 ·published 2012-01-21 00:36 UTC
rendered paste body
<!-- The following code is being used in Single.php -->		<div class="Category_Headlines_Box">		    <h2><?php $category = get_the_category(); echo $category[0]->cat_name; ?> Headlines</h2>		<?php global $post;		$args = array('category_name' => $category[0]->slug, 'numberposts' => 4, 'tag' => current_issue() );		$myposts = get_posts( $args );		foreach( $myposts as $post ) :	setup_postdata($post); ?>			<li><a href="<?php the_permalink(); ?>" title="Link to &quot;<?php the_title(); ?>&quot;"><?php the_title(); ?></a></li>		<?php endforeach; ?>		</div>