Thread Starter
ellp
(@ellp)
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! 😀
Thread Starter
ellp
(@ellp)
Hello esmi!
I have tried to use post_per_page too, but I got the same error. About your second idea I will try that. Thanks.