Sorry, this entry is only available in Swedish.
/* Controll which year it is according to the url */ $url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']; $the_blogdate = get_the_date('Y'); //this is for blog posts. echo ''; if ((false !== strpos($url,'2014'))|| $the_blogdate == '2014') { echo ' '; ?> } if ((false !== strpos($url,'2015')) || $the_blogdate == '2015') { echo ' '; ?> } if ((false !== strpos($url,'2016')) || $the_blogdate == '2016') { echo ' '; ?> } ?>
/* */ ?>