HEX
Server: LiteSpeed
System: Linux premium71.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User: consovgw (933)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/self/root/proc/self/cwd/wp-content/themes/consultio/taxonomy-case-study-category.php
<?php
/**
 * The template for displaying Category Case Study
 *
 * @package Consultio
 */
get_header();
?>

<div class="container content-container">

    <div class="row content-row">
        <div id="primary" class="col-12">
            <main id="main" class="site-main">
                <div class="ct-grid ct-case-study-grid1">
                    <div class="ct-grid-inner row">
                        <?php if ( have_posts() )
                        {
                            while ( have_posts() )
                            {
                                the_post();

                                /*
                                 * Include the Post-Format-specific template for the content.
                                 * If you want to override this in a child theme, then include a file
                                 * called loop-post-___.php (where ___ is the Post Format name) and that will be used instead.
                                 */
                                get_template_part( 'template-parts/category/case-study' );
                            }

                            consultio_posts_pagination();
                        }
                        else
                        {
                            get_template_part( 'template-parts/content', 'none' );
                        } ?>
                    </div>
                </div>
            </main><!-- #main -->
        </div><!-- #primary -->

    </div>
</div>

<?php get_footer(); ?>