| Server IP : 217.160.0.15 / Your IP : 216.73.216.227 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u37981780 ( 1696858) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/43/d124547881/htdocs/outofboundsldn.co.uk/wp-content/themes/new-blog_old/ |
Upload File : |
<?php
/**
* The template for displaying archive pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package new_blog
*/
get_header();
?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
if(absint(get_theme_mod('new_blog_sidebar_enable','1')) == 1) :
$modes1 = 8;
elseif (absint(get_theme_mod('new_blog_sidebar_enable','1')) == 0) :
$modes1 = 12;
endif ;
?>
<?php if ( have_posts() ) : ?>
<header id ="scroll-top" class="page-header">
<section class="search-result">
<div class="container-fluid">
<div class="result-holder">
<?php
the_archive_title( '<h1 class="page-title search-result">', '</h1>' );
the_archive_description( '<div class="archive-description">', '</div>' );
?>
</div>
</div>
</header><!-- .page-header -->
<section class="middle-content inner-content">
<div class="container-fluid">
<div class="row">
<div class="col-lg-<?php echo absint($modes1) ?>">
<?php if (absint(get_theme_mod('new_blog_blog_post_layout','2'))==2): ?>
<div class="grid-blog">
<section>
<div class="row">
<?php if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) :
the_post();
?>
<div class="col-md-6">
<?php get_template_part( 'template-parts/content' ); ?>
</div>
<?php endwhile;
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div>
<div class=" text-center">
<?php
the_posts_pagination( array(
'pre_text' => __('Previous', 'new-blog'),
'next_text' => __('Next', 'new-blog'),
));
?>
</div>
</section>
</div>
<?php endif;?>
<?php if (absint(get_theme_mod('new_blog_blog_post_layout','2'))==1): ?>
<div class="thumb-blog">
<section>
<div class="row">
<?php if ( have_posts() ) :
/* Start the Loop */
while ( have_posts() ) :
the_post();
?>
<div class="col-md-12">
<?php get_template_part( 'template-parts/content-1colume' ); ?>
</div>
<?php endwhile;
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div>
<div class=" text-center">
<?php
the_posts_pagination( array(
'pre_text' => __('Previous', 'new-blog'),
'next_text' => __('Next', 'new-blog'),
));
?>
</div>
</section>
</div>
<?php endif;?>
</div>
<?php if(esc_attr(get_theme_mod('new_blog_sidebar_enable','1')) == 1) : ?>
<div class="col-lg-4">
<?php get_sidebar()?>
</div>
<?php endif; ?>
</div>
</div>
</section>
<?php else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_footer();