-
Notifications
You must be signed in to change notification settings - Fork 1
/
archive-life_bookmark.php
74 lines (50 loc) · 1.25 KB
/
archive-life_bookmark.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
<?php
/**
* The template for displaying the Bookmark archive page
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Life
*/
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
$query = new WP_Query( array(
'post_type' => 'life_bookmark',
'posts_per_page' => 60, // must be 60, but I'm not sure why
'paged' => $paged,
) );
$date_check = '';
get_header();
?>
<main id="primary" class="site-main">
<?php if ( $query->have_posts() ) : ?>
<header class="page-header">
<?php
life_archive_header();
life_archive_submenu();
?>
</header><!-- .page-header -->
<div class="narrow-container">
<?php
while ( $query->have_posts() ) : $query->the_post();
$date = get_the_date();
if ( $date != $date_check ) {
echo '<h2 class="heading-alt">' . $date . '</h2>';
}
get_template_part( 'template-parts/card-landscape' );
$date_check = $date;
endwhile;
?>
</div>
<?php
life_pagination();
wp_reset_query();
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
<div class="secondary-content">
<?php dynamic_sidebar( 'bookmarks-secondary' ); ?>
</div>
</main><!-- #main -->
<?php
get_footer();