Home / Widgets / Add dynamic copyright year
Duplicate Snippet

Embed Snippet on Your Site

Add dynamic copyright year

This shortcode will automatically add "Copyright © 2024" (or the current year).

Code Preview
php
<?php
// This will output "Copyright © 2024" or the current year automatically.
$copyright = "Copyright &#169 " ;
$current_year = date( 'Y' ) ; 
$copyright_year = $copyright . $current_year ;
echo $copyright_year;
// For centered text, replace line 9 with this: 
// echo '<span class="copyright center"><center>', $copyright_year, "</center></span>";
// Now you can use CSS styling too. 

Comments

Add a Comment