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 © " ;
	$current_year = date( 'Y' ) ; 
	$copyright_year = '<span id="copyright">' . $copyright . $current_year . '.</span>' ;
	echo $copyright_year; 
	
// Style in CSS with #copyright

Comments

Add a Comment