If your website is still showing © 2023 and it should be © 2024 then take the opportunity to update once and have it correct forever using one of the code snippets below:
Show current year in PHP
© <?=date("Y") ?>
Show current year in JavaScript
<SCRIPT LANGUAGE="JavaScript"> today=new Date(); cy=today.getFullYear(); document.write(‘©’ + cy); </SCRIPT>