<h2 class="featheading">ultime recensioni</h2>
<?php
$my_query = new WP_Query("meta_key=is_featured&meta_value=1&showpo sts=4&orderby=rand");
$e=1;
while ($my_query->have_posts()) : $my_query->the_post();
$image=get_post_meta($post->ID, 'image', true);
if ( $image ) {
$g = get_bloginfo('template_directory') . "/thumb.php?src=" . str_replace('http://'.$_SERVER['HTTP_HOST'], "", $image) . "&h=112&w=152&zc=1&q=100";
}else{
$g = get_bloginfo('template_directory') . "/images/default2.gif";
}
if($e<=4){
?>
<div class="featuredframe">
<div class="featpic">
<a href="<?php the_permalink()?>" title="<?php the_title()?>" rel="nofollow"><img src="<?php echo $g; ?>" alt="<?php the_title()?>" border="0" /></a>
</div>
<h2 class="featuredtitle"><a href="<?php the_permalink()?>" title="<?php the_title()?>"><?php the_short_title(22)?></a></h2>
<div class="featdescription">
<?php the_excerpt_main("10"); ?>
</div>
<div class="clear"></div>
</div>