File "content-quote.php"

Full Path: /home/adniftyx/public_html/wp-content/themes/credio/template-parts/post/content-quote.php
File size: 1004 B
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * @author  rs-theme
 */
?>

<?php if(has_post_thumbnail()){ ?>
  <div class="bs-img">
    <?php the_post_thumbnail()?>
  </div>
<?php } ?>

<div class="single-content-full">
    <div class="bs-desc">
        <?php
            the_content();
            wp_link_pages( array(
              'before'      => '<div class="page-links">' . esc_html__( 'Pages:', 'credio' ),
              'after'       => '</div>',
              'link_before' => '<span class="page-number">',
              'link_after'  => '</span>',
            ));
        ?>
    </div>
    <?php 
        if(has_tag()){ ?>
            <div class="bs-info single-page-info tags">
                <?php
                    //tag add
                    $seperator = ''; // blank instead of comma
                    $after     = '';
                    echo esc_html__( 'Tags: ', 'credio' );
                    the_tags( '', $seperator, $after );
                ?>             
            </div> 
       <?php }
    ?> 
</div>