I have a small php code. This code get the title's of the blog items. But i have a question about this code.
How can I make it. That pick-up of last 6 titles?
<ul class="blog-list">
<?php foreach ($siblings as $sibling) : ?>
<li><a href="<?php echo get_permalink($sibling->ID); ?>" data-nav-position="fade"><?php echo get_the_title($sibling->ID); ?></a></li>
<?php endforeach; ?>
</ul>
Thanks for help