Home / Admin / Dynamic Year Copyright Shortcode
Duplicate Snippet

Embed Snippet on Your Site

Dynamic Year Copyright Shortcode

This snippet adds an easy-to-use shortcode to display the copyright symbol with the current year.

Code Preview
php
<?php
// Copy the Shortcode in the Insertion box below and paste it wherever you want the copyright symbol + year to be displayed.
// This will output © 2023 or the current year automatically.
echo "© " . date( 'Y' );

Comments

Add a Comment