How get Year Shortcode for a wordpress website?
For the functions.php file:
function year_shortcode() {
$year = date('Y');
return $year;
}
add_shortcode('year', 'year_shortcode');
Usage
Use [year] in your posts.
Tags: Year Shortcode for a wordpress website
by Subbu · Published March 15, 2013 · Last modified May 3, 2013
by Subbu · Published November 24, 2025
by Subbu · Published December 5, 2025
More