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/index-banner.php
<!-- 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
                            if (is_404()) {
                                esc_html_e('Error 404', 'appointment');
                            } elseif (is_singular()) {
                                the_title();
                            } elseif (is_search()) {
                                esc_html_e("Search results for:", 'appointment');
                                echo ' ';
                                echo get_search_query();
                            } elseif (get_option('show_on_front') == 'posts') {
                                esc_html_e('Home', 'appointment');
                            } else {
                                the_title();
                            }
                            ?>
                        </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>
<!-- /Page Title Section -->
<div class="clearfix"></div>