Skip to content

Instantly share code, notes, and snippets.

@orionthemes
orionthemes / Create a year shortcode for WordPress
Last active February 17, 2018 08:23
Add a current year shortcode
/* this goes in functions.php file in your child theme */
function current_year_shortcode() {
$year = date('Y');
return $year;
}
add_shortcode('year', 'current_year_shortcode');