Current Year shortcode
Coding language PHP
What It Does Displays and updates the year dynamically where you use the shortcode
How To Implement Paste the code into your child theme functions.php file.
Use [year] in your posts.
Rating
1.3
Rated 1.3 out of 5
The Code
function year_shortcode() {
$year = date(‘Y’);
return $year;
}
add_shortcode(‘year’, ‘year_shortcode’);
Rate this code
