January 31st
What’s so special about this? This is my first php solution I thought of without spending over 15 minutes over it. All it does is add a zero in front of single digit numbers so now my comments look like 00, 01, 02… 09, 10 (I hope).
<?php if ($commentnumber < "10") { echo "0" + $commentnumber; } ?>
<?php $commentnumber = comments_number('0','1','%'); ?>
Now all I need is 10 comments
