Using WP Category Lists Plugin to Dynamically Display Category (PHP)

I found a much easier way to do this. I called this PHP in the Loop:

if ($paged == 0)
  $offset = 0;
else
  $offset = ($paged - 1) * 11;
global $post;
$category = get_the_category($post->ID);
$category = $category[0]->cat_ID;
$myposts = get_posts(array('numberposts' => 11, 'offset' => $offset, 'category__in' => array($category), 'post__not_in' => array($post->ID),'post_status'=>'publish'));
foreach($myposts as $post) :
setup_postdata($post);

And then was able to style the results with CSS and calling different elements such as the_title();