rendered paste body<!-- The follow 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 = get_the_category(); echo $category[0]->cat_name;.'', '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 "<?php the_title(); ?>""><?php the_title(); ?></a></li> <?php endforeach; ?> </div>