-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.php
106 lines (76 loc) · 3.17 KB
/
archive.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
/**
* The template for displaying archive pages.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package regnsky
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
if ( have_posts() ) : ?>
<header class="page-header">
<div class="container">
<h1 class="page-title">
<?php the_archive_title(); ?>
<?php if ( !is_category() ) : // Show number of posts if it isn't a category page ?>
<span class="total-results text-mute"><?php global $wp_query; $total_results = $wp_query->found_posts; echo '(' . $total_results . ' indlæg)' ?></span>
<?php endif; ?>
</h1>
<!-- Author description – if there is one -->
<?php $authorDesc = get_the_author_meta('description'); ?>
<?php if ( is_author() && !empty($authorDesc) ) : ?>
<div class="flex">
<p class="archive-description col col-xs-12 col-sm-10 offset-sm-1 col-md-8 offset-md-2">
<?php echo $authorDesc; ?>
</p>
</div>
<?php endif; ?>
</div>
</header><!-- .page-header -->
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
$withcomments = "1"; // "Hack" to display comments on home
/*
* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'template-parts/content', get_post_format() );
endwhile; ?>
<?php
$posts_per_page = get_option('posts_per_page');
if ($wp_query -> found_posts > $posts_per_page) : ?>
<section class="pagination-wrapper">
<div class="container">
<div class="pagination flex">
<div class="col col-xs-12">
<?php
$paginate_args = array(
'show_all' => false,
'end_size' => 1,
'mid_size' => 1,
'prev_next' => false,
'prev_text' => __('« Tilbage'),
'next_text' => __('Videre »')
);
echo paginate_links($paginate_args);
?>
</div>
</div>
</div>
</section>
<?php
endif; ?>
<?php
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
// get_sidebar();
get_footer();