HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-86-generic #87-Ubuntu SMP PREEMPT_DYNAMIC Mon Sep 22 18:03:36 UTC 2025 x86_64
User: cssnetorguk (1024)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: //home/bristolfilton.co.uk/public_html/wp-content/themes/spidermag/archive.php
<?php
/**
 * The template for displaying archive pages.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package Spider_Mag
 */
get_header(); 

	if ( have_posts() ) : ?>

		<div class="container">
		    <div class="clearfix">
		            <?php spidermag_breadcrumbs(); ?><!-- breadcrumbs call function end -->
		    </div>
		    <?php  the_archive_description('<div class="taxonomy-description">', '</div>'); ?>
		</div>
		
	<?php
	
	    $page_layout = esc_attr( get_theme_mod( 'spidermag_archive_page_layout_type','masonry' ) );

	    get_template_part( 'template-parts/archives/archive', $page_layout );

	endif; 

get_footer();