How do I display an entry order number next to my blog post title?

Hi @geofharries,

With

<?php echo $page->num() ?>

you can get the sorting number of a page. If you like a zero in front of the number, you would have to prepend it.

You could use str_pad() to achieve this.

1 Like