File: /home/aqo14e2iyyd9/public_html/wp-content/themes/real-estate-property/archive.php
<?php
/**
* The template for displaying archive pages.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Real Estate Property
*/
get_header(); ?>
<section id="blog-content" class="section-padding">
<div class="featured-img">
<div class="post-thumbnail">
<?php
if ( has_post_thumbnail() ) :
the_post_thumbnail();
else :
// Get custom fallback image set from the Customizer
$real_estate_property_custom_fallback_img = get_theme_mod( 'real_estate_property_custom_fallback_img' );
if ( ! empty( $real_estate_property_custom_fallback_img ) ) :
?>
<img src="<?php echo esc_url( $real_estate_property_custom_fallback_img ); ?>">
<?php else : ?>
<img src="<?php echo esc_url( get_template_directory_uri() . '/images/exist_img.jpg' ); ?>">
<?php endif;
endif;
?>
</div>
<div class="single-meta-box">
<h2 class="my-3"><?php the_title(); ?></h2>
<?php if ( get_theme_mod('real_estate_property_breadcrumb_setting',true) ) : ?>
<div class="bread_crumb text-center">
<?php real_estate_property_breadcrumb(); ?>
</div>
<?php endif; ?>
</div>
</div>
<div class="container">
<div class="row">
<?php
get_template_part( 'template-parts/layouts');
?>
</div>
</div>
</section>
<?php get_footer(); ?>