« Back to History
tag.php
|
20260920_164915.php
Initial Domain Snapshot
Copy Code
<?php get_header(); ?> <div class="tag-content-page"> <h1>Posts by Tag: <?php echo single_tag_title(); ?></h1> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="post-container"> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <!-- Display Featured Image if available --> <?php if ( has_post_thumbnail() ) : ?> <div class="post-thumbnail"> <a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail('medium'); ?> </a> </div> <?php endif; ?> <p><?php the_excerpt(); ?></p> <!-- Tags --> <div class="post-tags"> <?php the_tags(); ?> </div> </div> <?php endwhile; else : echo '<p>No posts found for this tag.</p>'; endif; ?> <?php the_posts_pagination(); ?> </div> <?php get_footer(); ?>