HEX
Server: LiteSpeed
System: Linux s917.lon1.mysecurecloudhost.com 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: assibfaf (3034)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/assibfaf/public_html/wp-content/themes/zzero/single.php
<?php
/**
 * The template for displaying all single posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package WordPress
 * @subpackage Gringo
 * @since Gringo 1.0
 */
get_header(); ?>
<section class="section pt-5" style="padding-top: 50px;">
    <div class="container">

		<?php 
		/* Start the Loop */
		while ( have_posts() ) :
			the_post();
            gringo_post_views( get_the_ID() );
            ?>
            <div class="row">
            	<div class="col-lg-8">
            	    <?php the_breadcrumb(); ?>
            		<?php the_title( '<h1>', '</h1>' ); ?>
            		<?php gringo_entry_categories(); ?>
            		<?php the_content(); ?>
            		<div class="pay-buttons seo-section__buttons">
            			<a href="<?php echo esc_url( home_url( '/order' ) ); ?>" class="btn btn--primary pay-buttons__item" rel="nofollow">Continue to order</a>
            			<a href="<?php echo esc_url( home_url( '/inquiry' ) ); ?>" class="btn btn--alternate pay-buttons__item" rel="nofollow">Get a quote</a>
            		</div>
            		<div style="margin-top:40px;">
            		    <?php the_post_navigation(); ?>
            		</div>
            	</div>
            	<div class="col-lg-4 d-none d-lg-block">
            	    <?php get_sidebar(); ?>
            	</div>	
            </div>
        <?php endwhile; ?>
	</div>
</section>

<?php get_template_part( 'widgets/cta', 'calculator' ); ?>

<section class="section features-section">
    <div class="container">
        <?php get_template_part( 'widgets/features' ); ?>
    </div>
</section>

<?php get_template_part( 'widgets/guarantees' ); ?>

<?php get_footer();