<!-- Destacados // -->
<span class="heading2"><span></span>
</span>
<ul class="highlights">
<?php $highlight1 = new WP_Query("meta_key=thumbnail&cat=".get_wpn_config('highlights_category_id_1')."&showposts=1"); while($highlight1->have_posts()) : $highlight1->the_post();?>
<li>
<?php if(get_post_meta($post->ID, "Image", true)) : ?>
<a href="<?php the_permalink(); ?>" class="image"><img src="<?php echo get_post_meta($post->ID, "Image", true); ?>" /></a>
<?php endif; ?>
<span class="titledes"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></span>
</li>
<?php endwhile; ?>
<?php $highlight2 = new WP_Query("meta_key=thumbnail&cat=".get_wpn_config('highlights_category_id_2')."&showposts=1"); while($highlight2->have_posts()) : $highlight2->the_post();?>
<li>
<?php if(get_post_meta($post->ID, "Image", true)) : ?>
<a href="<?php the_permalink(); ?>" class="image"><img src="<?php echo get_post_meta($post->ID, "Image", true); ?>" /></a>
<?php endif; ?>
<span class="titledes"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></span>
</li>
<?php endwhile; ?>
<?php $highlight3 = new WP_Query("meta_key=thumbnail&cat=".get_wpn_config('highlights_category_id_3')."&showposts=1"); while($highlight3->have_posts()) : $highlight3->the_post();?>
<li>
<?php if(get_post_meta($post->ID, "Image", true)) : ?>
<a href="<?php the_permalink(); ?>" class="image"><img src="<?php echo get_post_meta($post->ID, "Image", true); ?>" /></a>
<?php endif; ?>
<span class="titledes"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></span>
</li>
<?php endwhile; ?>
<?php $highlight4 = new WP_Query("meta_key=thumbnail&cat=".get_wpn_config('highlights_category_id_4')."&showposts=1"); while($highlight3->have_posts()) : $highlight4->the_post();?>
<li>
<?php if(get_post_meta($post->ID, "Image", true)) : ?>
<a href="<?php the_permalink(); ?>" class="image"><img src="<?php echo get_post_meta($post->ID, "Image", true); ?>" /></a>
<?php endif; ?>
<span class="titledes"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></span>
</li>
<?php endwhile; ?>
</ul>
<div class="cleardes"></div>
<!-- // Destacados -->