/
home
/
u303693141
/
public_html
/
wp-content
/
themes
/
Upload File
HOME
<?php /** * Blog archive override. * * @package real-estate-lite-child */ get_header(); $refc_posts_page_id = (int) get_option('page_for_posts'); ?> <div id="primary" class="content-area blog refc-blog-archive"> <main id="main" class="site-main grid" role="main"> <?php if (is_home() && !is_front_page() && $refc_posts_page_id) : ?> <?php $refc_posts_page = get_post($refc_posts_page_id); ?> <?php if ($refc_posts_page && trim($refc_posts_page->post_content) !== '') : ?> <section class="refc-intro refc-blog-intro" aria-label="<?php echo esc_attr(get_the_title($refc_posts_page)); ?>"> <?php echo apply_filters('the_content', $refc_posts_page->post_content); ?> </section> <?php endif; ?> <?php endif; ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="col-4-12 post-item"> <?php get_template_part('template-parts/content-preview', get_post_format()); ?> </div> <?php endwhile; ?> <?php the_posts_navigation(); ?> <?php else : ?> <?php get_template_part('template-parts/content', 'none'); ?> <?php endif; ?> </main> </div> <?php get_footer();