Your IP : 216.73.216.95


Current Path : /var/test/www/html/seeds/wp-content/themes/raze/
Upload File :
Current File : /var/test/www/html/seeds/wp-content/themes/raze/hero-bottom.php

<?php if ( get_theme_mod('raze_hero_bottom_enable') ) : ?>
    <div id="hero2" class="hero-content">
        <?php if (get_theme_mod('raze_hero1_background_image')): ?>
            <div class="layer"></div>
        <?php endif; ?>
        <div class="container hero-container">
            <?php
            $args = array(
                'post_type' => 'page',
                'posts_per_page' => 1,
                'post__in' => array(get_theme_mod('raze_hero2_selectpage')),
            );

            $loop = new WP_Query( $args );
            while( $loop -> have_posts() ):
                $loop->the_post();

                $class = has_post_thumbnail() ?  'col-md-8 col-sm-8' : 'col-md-12 centered' ; ?>
                <div class="<?php echo $class; ?> h-content">
                    <h1 class="title">
                        <?php the_title(); ?>
                    </h1>
                    <?php if(get_theme_mod('raze_hero2_full_content', true)) : ?>
                        <div class="excerpt">
                            <?php the_content(); ?>
                        </div>
                    <?php else : ?>
                        <div class="excerpt">
                            <?php echo substr(get_the_content(), 0, 300)."..."; ?>
                        </div>
                    <?php endif; ?>
                    <?php if(get_theme_mod('raze_hero2_button') != ''): ?>
                    <div class="button">
                        <a href="<?php the_permalink(); ?>" class="more-button">
                            <?php echo esc_html(get_theme_mod('raze_hero2_button')); ?>
                        </a>
                    </div>
                    <?php endif;?>
                </div>
                <?php if (has_post_thumbnail()) : ?>
                <div class="col-md-4 col-sm-4 f-image">
                    <a href="<?php the_permalink(); ?>"><img src="<?php the_post_thumbnail_url(); ?>"  alt="<?php the_title(); ?>"></a>
                </div>
            <?php endif; ?>
                <?php
            endwhile; ?>
            <?php wp_reset_postdata(); ?>
        </div>
    </div>
<?php endif; ?>