Category: name ) . '" ' . '>' . $category->name.'

'; echo '

Cat ID: '. $category->cat_ID. '

'; // The Query $id_cat = $category->cat_ID;} $args = array('cat' => $id_cat, 'posts_per_page' => 5, ); query_posts( $args ); // The Loop while ( have_posts() ) : the_post(); echo '
  • '; the_title(); echo '
  • '; endwhile; //} // Reset Query wp_reset_query(); ?>