<?php function ZineyRelatedPosts($titulo,$post_ID){
$max_links = 5; //Máximo de entradas a mostrar
$i=0;
$tags = wp_get_post_tags($post_ID);
if($tags) {
$first_tag = $tags[0]->term_id;
$args=array( 'tag__in' => array($first_tag),
'post__not_in' => array($post_ID),
'showposts'=> ($max_links),
'caller_get_posts'=>1 );
$consulta = new WP_Query($args);
if( $consulta->have_posts() ) {
echo $titulo.'<ul class="ZineyRelatedPosts">';
while ($consulta->have_posts()) : $consulta->the_post();
if($i<$max_links){
echo '<li><a href="'.get_permalink().'" title="'.get_the_title().'">'.get_the_title().'</a></li>';
$i++;
}
endwhile;
echo '</ul>';
}
}
wp_reset_query();
}
?>