JoeHana
8/3/2016 - 3:49 PM

Shortcode to output the current year. Useful for Copyright/Footer

Shortcode to output the current year. Useful for Copyright/Footer

add_shortcode( 'year', 'shortcode_current_year' );

function shortcode_current_year(){
  return date( 'Y' );
}