No entiendo porqué repetís el bucle completo tantas veces. Pasemos en limpio, que estructura HTML querés generar? Con una vez que tires el loop con el contador ya podés ir usando condicionales sin necesidad de repetir consultas.
Te pongo algo a modo de ejemplo...
Código PHP:
Ver original<
?php $i = 1;
$high_cat1 = get_option('repo_high_cat1');
$high_query = new WP_Query( 'category_name='.$high_cat1.'&posts_per_page=8' );
while ( $high_query->have_posts() ) : $high_query->the_post();
if($i == 1) { ?>
<div class="high-first-item">
<img class="highmage" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php get_image_url(); ?>&h=91&w=146&zc=1" alt="" />
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php wpe_excerpt('wpe_excerptlength_slide', 'wpe_excerptmore'); ?>
</div>
} if($i == 2) { ?>
// Tu código HTML para mostrar la entrada numero 2...
} if($i == 3) { ?>
// Tu código HTML para mostrar la entrada numero 3...
} if($i == 4) { ?>
// Tu código HTML para mostrar la entrada numero 4...
} if($i == 5) { ?>
// Tu código HTML para mostrar la entrada numero 5...
// Bueno, creo que se entiende la idea xD
}
//Sumamos...
$i++;
endwhile; endif; ?>