Lego2012
12/13/2016 - 11:31 AM

Year Shortcode

Year Shortcode

<!-- For the functions.php file: -->

function year_shortcode() {
  $year = date('Y');
  return $year;
}
add_shortcode('year', 'year_shortcode');

<!-- Usage -->

<!-- Use [year] in your posts. -->