// COPYRIGHT JAHR ALS SHORTCODE ////////////////////////////////////////////// function bh_year_shortcode() { $year = date('Y'); return $year; } add_shortcode('year', 'bh_year_shortcode');