/** * [current_year] * @param $atts * @return false|string */ function current_year( $atts ){ $date = getdate(); return $date['year']; } add_shortcode( 'current_year', 'current_year' );