-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
58 lines (49 loc) · 2.02 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
<?php
// Include the header template
get_header(); ?>
<!-- Page Banner Section -->
<div class="page-banner">
<!-- Background Image -->
<div class="page-banner__bg-image" style="background-image: url(<?php echo get_theme_file_uri('/images/ocean.jpg'); ?>);"></div>
<!-- Content Container -->
<div class="page-banner__content container container--narrow">
<!-- Page Title (Reflects the archive title) -->
<h1 class="page-banner__title"><?php the_archive_title(); ?></h1>
<!-- Page Banner Introduction (Reflects the archive description) -->
<div class="page-banner__intro">
<p><?php the_archive_description(); ?></p>
</div>
</div>
</div>
<!-- Main Content Section -->
<div class="container container--narrow page-section">
<?php
// Start the WordPress loop to display posts in the archive
while (have_posts()) {
// Setup the current post data
the_post(); ?>
<!-- Individual Post Item -->
<div class="post-item">
<!-- Post Title with Link to Full Post -->
<h2 class="headline headline--medium headline--post-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<!-- Metabox for Post Information -->
<div class="metabox">
<!-- Post Author, Date, and Categories -->
<p>Posted by <?php the_author_posts_link(); ?> on <?php the_time('n.j.y'); ?> in <?php echo get_the_category_list(', '); ?></p>
</div>
<!-- Post Excerpt -->
<div class="generic-content">
<?php the_excerpt(); ?>
<!-- "Continue Reading" Button with Link to Full Post -->
<p><a class="btn btn--blue" href="<?php the_permalink(); ?>">Continue reading »</a></p>
</div>
</div>
<?php }
// Pagination links for navigating through the archive pages
echo paginate_links();
?>
</div>
<?php
// Include the footer template
get_footer();
?>