Date Archive Simple Snippet – date.php
<?php get_header(); ?>
<?php get_template_part("template-parts/common/hero"); ?>
<div class="posts text-center">
<h1>Posts In
<?php
$day = esc_html(get_query_var("day"));
$month = esc_html(get_query_var("monthnum"));
$year = esc_html(get_query_var("year"));
if (is_month()) {
$dateobj = DateTime::createFromFormat("!m", $month);
echo $dateobj->format("F");;
} elseif (is_year()) {
echo $year;
} elseif (is_day()) {
printf("%s/%s/%s", $day, $month, $year);
}
?>
</h1>
<?php
while (have_posts()) {
the_post();
?>
<h2> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php
}
?>
<div class="container post-pagination">
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-8">
<?php
echo get_the_posts_pagination(array(
"screen_reader_text" => ' ',
"prev_text" => "New Posts",
"next_text" => "Old Posts"
));
?>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>