I’m using this script.
—-
<div class=”title”><?php _e(‘Ultimos Posts’); ?></div>
<?php get_recentposts(); ?>
—-
Then. I turned it to …
—-
<div class=”title”><?php _e(‘Ultimos Posts’); ?></div>
<?php get_recentposts(‘numberposts=5’); ?>
—-
… and it appeared the same error.
The problem must be in that line.