| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /HostingSpaces/admin/aifortoday.co.uk/wwwroot/wp-content/themes/senior-care-lite/ |
Upload File : |
<?php
/**
* The template for displaying archive pages
*
* @subpackage Senior Care Lite
* @since 1.0
*/
get_header(); ?>
<main id="content">
<?php $senior_care_lite_header_option = get_theme_mod( 'senior_care_lite_show_header_image','on');
if($senior_care_lite_header_option == 'on'){ ?>
<?php if ( have_posts() ) : ?>
<header class="page-header">
<div class="header-image"></div>
<div class="internal-div">
<?php //breadcrumb
if ( !is_page_template( 'page-template/custom-home-page.php' ) ) { ?>
<div class="bread_crumb archieve_breadcrumb align-self-center text-center">
<?php senior_care_lite_breadcrumb(); ?>
</div>
<?php } ?>
<?php
the_archive_title( '<h1 class="page-title mt-4 text-center"><span>', '</span></h1>' );
the_archive_description( '<div class="taxonomy-description mt-4 text-center">', '</div>' );
?>
</div>
</header>
<?php endif; ?>
<?php }
else if($senior_care_lite_header_option == 'off'){ ?>
<?php if ( have_posts() ) : ?>
<header class="mt-4">
<?php //breadcrumb
if ( !is_page_template( 'page-template/custom-home-page.php' ) ) { ?>
<div class="bread_crumb archieve_breadcrumb align-self-center text-center">
<div class="without-img">
<?php senior_care_lite_breadcrumb(); ?>
</div>
</div>
<?php } ?>
<?php
the_archive_title( '<h1 class="page-title withoutimg mt-4 text-center"><span>', '</span></h1>' );
the_archive_description( '<div class="taxonomy-description mt-4 text-center">', '</div>' );
?>
</header>
<?php endif; ?>
<?php } ?>
<div class="container">
<div class="content-area my-5">
<div id="main" class="site-main" role="main">
<div class="row m-0">
<?php
get_template_part( 'template-parts/post/post-layout' );
?>
</div>
</div>
</div>
</div>
</main>
<?php get_footer();