HEX
Server: Apache
System: Linux p3plzcpnl504740.prod.phx3.secureserver.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: l2pbkn5l6xav (4972877)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: /home/l2pbkn5l6xav/public_html/wp-content/themes/prime-business/archive.php
<?php
/**
 * The template for displaying archive pages.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 */

get_header();
?>

<div class="ct-main-body">
    <?php if ( have_posts() ) : ?>
    <div class="container archive-title">
    	<div class="row">
    		<div class="twelve columns">
                <header class="page-header">
                    <?php the_archive_title( '<h1 class="page-title">', '</h1>' ); ?>
                </header><!-- .page-header -->
            </div><!-- /.twelve columns -->
    	</div>
    </div>
    <?php endif; ?>

    <?php
        if ( have_posts() ) :
    ?>

        <div class="container loop-container">
            <div class="row">
                <div class="nine columns">
                    <?php
                        while ( have_posts() ) : the_post();

                            get_template_part( 'template-parts/content/content' );

                        endwhile; // End of the loop.

                        // Pagination
                        get_template_part( 'template-parts/pagination/pagination', get_post_format() );
                    ?>
                </div><!-- /.nine columns -->
                <?php get_sidebar(); ?>
            </div><!-- /.row -->
        </div><!-- /.container -->

    <?php
        else :

			get_template_part( 'template-parts/content/content', 'none' );

		endif;
	?>
</div><!-- /.ct-main-body -->

<?php
// Pagination
get_template_part( 'template-parts/pagination/pagination', get_post_format() );

get_footer();