Server : Apache System : Linux server.lienzindia.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : plutus ( 1007) PHP Version : 7.4.33 Disable Function : NONE Directory : /home/plutus/public_html/old-website/wp-content/themes/erapress/ |
Upload File : |
<?php /** * The template for displaying archive pages. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package EraPress */ get_header(); erapress_breadcrumbs_style(); ?> <section class="Blog-section wow fadeInUp"> <div class="container"> <div class="row"> <div class="col-lg-8"> <?php $erapress_paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1; $args = array( 'post_type' => 'post','paged'=>$erapress_paged ); ?> <?php if( have_posts() ): ?> <?php while( have_posts() ) : the_post(); get_template_part('template-parts/content/content','page'); endwhile; ?> <!-- Pagination --> <?php // 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>', ) ); ?> <!-- Pagination --> <?php else: ?> <?php get_template_part('template-parts/content/content','none'); ?> <?php endif; ?> </div> <div class="col-lg-4"> <?php get_sidebar(); ?> </div> </div> </div> </section> <?php get_footer(); ?>