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/search.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 search-title">
        <div class="row">
            <div class="twelve columns">
                <h1><?php esc_html_e( 'Search results for: ', 'prime-business' ); ?><?php echo get_search_query(); ?></h1>
            </div><!-- /.twelve columns -->
        </div> <!-- /.row -->
    </div> <!-- /.container -->
    <?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', 'search' );

                        endwhile; // End of the loop.
                    ?>
                </div><!-- /.nine columns -->
                <?php get_sidebar(); ?>
            </div><!-- /.row -->
        </div><!-- /.container -->

    <?php
        else :

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

        endif;

        // Pagination
        get_template_part( 'template-parts/pagination/pagination', get_post_format() );
    ?>
</div><!-- /.ct-main-body -->

<?php
get_footer();