ferie 2021
der er lukket alle helligdage ( grundlovsdag og den 24 Dec)
18-19 februar
3-10-11-12-14 maj
uge 29-30-31
uge 42
27-28-29-30-31 Dec.
FERIE 2022
der er lukket alle helligdage ( grundlovsdag og den 24 Dec)
17-18 februar
11-12-13 april
27 maj
uge 29-30-31
uge 42
27-28-29-30 Dec.
FERIE 2023
der er lukket alle helligdage ( grundlovsdag og 24 december )
16-17 februar
25-26 april
19 maj
Uge 29-30-31 juli
uge 37
19-20 okt.
27-28-29 december.
FERIE 2024
der er lukket alle helligdage ( grundlovsdag og 24 december )
25-26-27 marts
10 maj
Uge 29-30-31
Uge 37
17-18...
ferie 2021
der er lukket alle helligdage ( grundlovsdag og den 24 Dec)
18-19 februar
3-10-11-12-14 maj
uge 29-30-31
uge 42
27-28-29-30-31 Dec.
FERIE 2022
der er lukket alle helligdage ( grundlovsdag og den 24 Dec)
17-18 februar
11-12-13 april
27 maj
uge 29-30-31
uge 42
27-28-29-30 Dec.
FERIE 2023
der er lukket alle helligdage ( grundlovsdag og 24 december )
16-17 februar
25-26 april
19 maj
Uge 29-30-31 juli
uge 37
19-20 okt.
27-28-29 december.
FERIE 2024
der er lukket alle helligdage ( grundlovsdag og 24 december )
25-26-27 marts
10 maj
Uge 29-30-31
Uge 37
17-18 oktober.
23-27-30-31 december.
Ferie 2025
der er lukket alle helligdage ( grundlovsdag og 24 december )
2-3 januar.
14-15-16 april
30 maj
5 ( grundlovsdag ) -6 juni
Uge 29-30-31
Uge 37
22-23-24-30-31 december.
Vi tager forbehold for ændringer!
Ferie 2026
der er lukket alle helligdage ( grundlovsdag og 24 december )
/*
Plugin Name: WP-PageNavi
Plugin URI: http://lesterchan.net/portfolio/programming/php/
Description: Adds a more advanced paging navigation to your WordPress blog.
Version: 2.40
Author: Lester 'GaMerZ' Chan
Author URI: http://lesterchan.net
*/
/*
Copyright 2008 Lester Chan (email : [email protected])
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
### Create Text Domain For Translations
add_action('init', 'pagenavi_textdomain');
function pagenavi_textdomain() {
load_plugin_textdomain('wp-pagenavi', false, 'wp-pagenavi');
}
### Function: Page Navigation Option Menu
add_action('admin_menu', 'pagenavi_menu');
function pagenavi_menu() {
if (function_exists('add_options_page')) {
add_options_page(__('PageNavi', 'wp-pagenavi'), __('PageNavi', 'wp-pagenavi'), 'manage_options', 'wp-pagenavi/pagenavi-options.php') ;
}
}
### Function: Page Navigation CSS
add_action('wp_head', 'pagenavi_css');
function pagenavi_css() {
echo "\n".''."\n";
if(@file_exists(TEMPLATEPATH.'/pagenavi-css.css')) {
echo ''."\n";
} else {
echo ''."\n";
}
echo ''."\n";
}
### Function: Page Navigation: Boxed Style Paging
function wp_pagenavi($before = '', $after = '') {
global $wpdb, $wp_query;
pagenavi_init(); //Calling the pagenavi_init() function
if (!is_single()) {
$request = $wp_query->request;
$posts_per_page = intval(get_query_var('posts_per_page'));
$paged = intval(get_query_var('paged'));
$pagenavi_options = get_option('pagenavi_options');
$numposts = $wp_query->found_posts;
$max_page = $wp_query->max_num_pages;
/*
$numposts = 0;
if(strpos(get_query_var('tag'), " ")) {
preg_match('#^(.*)\sLIMIT#siU', $request, $matches);
$fromwhere = $matches[1];
$results = $wpdb->get_results($fromwhere);
$numposts = count($results);
} else {
preg_match('#FROM\s*+(.+?)\s+(GROUP BY|ORDER BY)#si', $request, $matches);
$fromwhere = $matches[1];
$numposts = $wpdb->get_var("SELECT COUNT(DISTINCT ID) FROM $fromwhere");
}
$max_page = ceil($numposts/$posts_per_page);
*/
if(empty($paged) || $paged == 0) {
$paged = 1;
}
$pages_to_show = intval($pagenavi_options['num_pages']);
$pages_to_show_minus_1 = $pages_to_show-1;
$half_page_start = floor($pages_to_show_minus_1/2);
$half_page_end = ceil($pages_to_show_minus_1/2);
$start_page = $paged - $half_page_start;
if($start_page <= 0) {
$start_page = 1;
}
$end_page = $paged + $half_page_end;
if(($end_page - $start_page) != $pages_to_show_minus_1) {
$end_page = $start_page + $pages_to_show_minus_1;
}
if($end_page > $max_page) {
$start_page = $max_page - $pages_to_show_minus_1;
$end_page = $max_page;
}
if($start_page <= 0) {
$start_page = 1;
}
if($max_page > 1 || intval($pagenavi_options['always_show']) == 1) {
$pages_text = str_replace("%CURRENT_PAGE%", number_format_i18n($paged), $pagenavi_options['pages_text']);
$pages_text = str_replace("%TOTAL_PAGES%", number_format_i18n($max_page), $pages_text);
echo $before.'