File: /home/l2pbkn5l6xav/www/wp-content/themes/vw-landing-page/template-parts/content-gallery.php
<?php
/**
* The template part for displaying post
*
* @package VW Landing Page
* @subpackage vw_landing_page
* @since VW Landing Page 1.0
*/
?>
<div id="post-<?php the_ID(); ?>" <?php post_class('inner-service'); ?>>
<div class="post-main-box">
<?php
if ( ! is_single() ) {
// If not a single post, highlight the gallery.
if ( get_post_gallery() ) {
echo '<div class="entry-gallery">';
echo ( get_post_gallery() );
echo '</div>';
};
};
?>
<div class="new-text">
<h3 class="section-title"><?php the_title();?></h3>
<div class="post-info">
<?php if(get_theme_mod('vw_landing_page_toggle_postdate',true)==1){ ?>
<span class="entry-date"><?php echo esc_html( get_the_date() ); ?></span><span>|</span>
<?php } ?>
<?php if(get_theme_mod('vw_landing_page_toggle_author',true)==1){ ?>
<span class="entry-author"> <?php the_author(); ?></span><span>|</span>
<?php } ?>
<?php if(get_theme_mod('vw_landing_page_toggle_comments',true)==1){ ?>
<span class="entry-comments"><?php comments_number( __('0 Comment', 'vw-landing-page'), __('0 Comments', 'vw-landing-page'), __('% Comments', 'vw-landing-page') ); ?> </span>
<?php } ?>
<hr>
</div>
<p><?php $excerpt = get_the_excerpt(); echo esc_html( vw_landing_page_string_limit_words( $excerpt, esc_attr(get_theme_mod('vw_landing_page_excerpt_number','30')))); ?></p>
<div class="content-bttn">
<a class="view-more" href="<?php echo esc_url(get_permalink()); ?>"><?php esc_html_e( 'READ MORE', 'vw-landing-page' ); ?><i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
</div>