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 main template file. * * This is the most generic template file in a WordPress theme * and one of the two required files for a theme (the other being style.css). * It is used to display a page when nothing more specific matches a query. * E.g., it puts together the home page when no home.php file exists. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package erapress */ get_header(); erapress_breadcrumbs_style(); $erapress_default_pg_layout = get_theme_mod('erapress_default_pg_layout', 'erapress_rsb'); $col_class = 'col-lg-8'; ?> <section id="post-section" class="post-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(); ?>