WordPress Recent Post with the badge “New” on the side of the title post

This should get you started. It checks if the post was posted less than a day ago, and if it was, it will display a label that says new, which you can style.

<?php if(get_the_date('Y-m-d-H-i-s') > date("Y-m-d-H-i-s",strtotime("-1 day"))) { ?>
<span class="new-label">New</span>
<?php } ?>

You need to add this to your theme, in the file that displays posts.