Hello again esmi!
I’ve used your tip to solve this issue, and work like a charm! I used a code like:
<?php
$lastposts = get_posts('numberposts=5');
foreach($lastposts as $post) :
setup_postdata($post);
?>
<h2><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h2>
<?php endforeach; ?>
Thank You! ??