HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Apache24/htdocs/wp-content/themes/appointment/tag.php
<?php get_header(); ?>
<!-- Page Title Section -->
<div class="page-title-section">		
    <div class="overlay">
        <div class="container">
            <div class="row">
                <div class="col-md-6">
                    <div class="page-title">
                        <h1>
                            <?php
                            echo esc_html_e('Tag Archive', 'appointment');
                            echo ' ';
                            echo single_cat_title("", false);
                            ?>
                        </h1>
                    </div>
                </div>
                <div class="col-md-6">
                    <ul class="page-breadcrumb">
                        <?php if (function_exists('appointment_custom_breadcrumbs')) appointment_custom_breadcrumbs(); ?>
                    </ul>
                </div>
            </div>
        </div>	
    </div>
</div>
<div class="page-builder" id="wrap">
    <div class="container">
        <div class="row">
            <!-- Blog Area -->
            <div class="<?php appointment_post_layout_class(); ?>" >
                <?php
                if (have_posts()):
                    //Start the loop
                    while (have_posts()): the_post();
                        get_template_part('content', '');
                    endwhile;
                endif;
                // Previous/next page navigation.
                the_posts_pagination(array(
                    'prev_text' => '<i class="fa fa-angle-double-left"></i>',
                    'next_text' => '<i class="fa fa-angle-double-right"></i>',
                ));
                ?>
            </div>
            <!--Sidebar Area-->
            <div class="col-md-4">
                <?php get_sidebar(); ?>
            </div>
            <!--Sidebar Area-->
        </div>
    </div>
</div>
<?php get_footer();