timelines/search.php
Alexander Agnarson 193a2259c2 Initial commit
2024-03-20 14:45:02 +01:00

40 lines
No EOL
1 KiB
PHP

<?php get_header(); ?>
<div class="main-content">
<?php get_template_part('inc/subheader'); ?>
<div class="stickywrap">
<?php get_template_part('inc/page-title'); ?>
</div>
<?php if ( have_posts() ) : ?>
<div class="stickywrap">
<?php while ( have_posts() ): the_post(); ?>
<?php
// Assign the year to a variable
$year = get_the_date('Y', '', '', FALSE);
$year_link = get_year_link($year);
// If your year hasn't been echoed earlier in the loop, echo it now
if (! isset($year_check) || $year !== $year_check) {
echo "</div><div class='stickywrap'><h3 class='sticky-heading'><a href='" . $year_link . "'>" . $year . "</a></h3>";
}
// Now that your year has been printed, assign it to the $year_check variable
$year_check = $year;
?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
</div>
<?php get_template_part('inc/pagination'); ?>
<?php endif; ?>
</div><!--/.main-content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>