| 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-charity/ |
Upload File : |
<?php
/**
* The template for displaying archive pages
*
* @package Senior Care Charity
*/
get_header();
?>
<?php $senior_care_charity_archive_layout = get_theme_mod( 'senior_care_charity_archive_layout', 'layout-1' ); ?>
<div class="container">
<?php
if ( $senior_care_charity_archive_layout == 'layout-1' ) {
?>
<div class="main-wrapper">
<main id="primary" class="site-main ct-post-wrapper lay-width">
<?php if ( have_posts() ) : ?>
<?php senior_care_charity_breadcrumbs(); ?>
<header class="page-header">
<?php
the_archive_title( '<h1 class="page-title">', '</h1>' );
the_archive_description( '<div class="archive-description">', '</div>' );
?>
</header>
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'revolution/template-parts/content', get_post_format() );
endwhile;
?><?php
$senior_care_charity_pagination_wrap = absint(get_theme_mod('senior_care_charity_enable_pagination', 1));
$pagination_type = get_theme_mod('senior_care_charity_pagination_type', 'type-1');
if ($senior_care_charity_pagination_wrap == 1) {
if ($pagination_type == 'type-1') {
the_posts_pagination();
} elseif ($pagination_type == 'type-2') {
the_posts_navigation();
}
}
?><?php
else :
get_template_part( 'revolution/template-parts/content', 'none' );
endif;
?>
</main>
<?php get_sidebar(); ?>
</div>
<?php
} elseif ( $senior_care_charity_archive_layout == 'layout-2' ) {
?>
<div class="main-wrapper">
<?php get_sidebar(); ?>
<main id="primary" class="site-main ct-post-wrapper lay-width">
<?php if ( have_posts() ) : ?>
<?php senior_care_charity_breadcrumbs(); ?>
<header class="page-header">
<?php
the_archive_title( '<h1 class="page-title">', '</h1>' );
the_archive_description( '<div class="archive-description">', '</div>' );
?>
</header>
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'revolution/template-parts/content', get_post_format() );
endwhile;
?><?php
$senior_care_charity_pagination_wrap = absint(get_theme_mod('senior_care_charity_enable_pagination', 1));
$pagination_type = get_theme_mod('senior_care_charity_pagination_type', 'type-1');
if ($senior_care_charity_pagination_wrap == 1) {
if ($pagination_type == 'type-1') {
the_posts_pagination();
} elseif ($pagination_type == 'type-2') {
the_posts_navigation();
}
}
?><?php
else :
get_template_part( 'revolution/template-parts/content', 'none' );
endif;
?>
</main>
</div>
<?php
} elseif ( $senior_care_charity_archive_layout == 'layout-3' ) { // No-sidebar layout
?>
<div class="main-wrapper full-width">
<main id="primary" class="site-main ct-post-wrapper lay-width">
<?php if ( have_posts() ) : ?>
<?php senior_care_charity_breadcrumbs(); ?>
<header class="page-header">
<?php
the_archive_title( '<h1 class="page-title">', '</h1>' );
the_archive_description( '<div class="archive-description">', '</div>' );
?>
</header>
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'revolution/template-parts/content', get_post_format() );
endwhile;
?><?php
$senior_care_charity_pagination_wrap = absint(get_theme_mod('senior_care_charity_enable_pagination', 1));
$pagination_type = get_theme_mod('senior_care_charity_pagination_type', 'type-1');
if ($senior_care_charity_pagination_wrap == 1) {
if ($pagination_type == 'type-1') {
the_posts_pagination();
} elseif ($pagination_type == 'type-2') {
the_posts_navigation();
}
}
?><?php
else :
get_template_part( 'revolution/template-parts/content', 'none' );
endif;
?>
</main>
</div>
<?php } ?>
</div>
<?php
get_footer();