Current Year Shortcode
Adds a [current_year] shortcode that outputs the current four-digit year, useful for copyright notices.
PHPby SnipCraft
php
<?php
add_shortcode( 'current_year', 'scseed_current_year_shortcode' );
function scseed_current_year_shortcode() {
return esc_html( gmdate( 'Y' ) );
}#content#copyright#date#shortcode#utility