Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
template-parts
/
service
/
Editing: content-service-1.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; $prefix = Constants::$theme_prefix; $thumb_size = "{$prefix}-size2"; $col_class = Helper::has_sidebar() ? 'col-md-6' : 'col-lg-4'; ?> <section class="service-wrap-layout6"> <div class=""> <div class="row"> <?php while ( have_posts() ) : the_post(); ?> <?php $thumb = Helper::generate_thumbnail_image( get_the_ID(), $thumb_size ); ?> <div id="post-<?php the_ID(); ?>" <?php post_class( $col_class ); ?> > <div class="service-box-layout12"> <img src="<?php echo esc_url($thumb); ?>" alt="<?php the_title_attribute(); ?>" class="img-fluid"> <div class="item-content"> <h3> <a href="<?php the_permalink() ; ?>"> <?php the_title(); ?> </a> </h3> <p> <?php $content = Helper::generate_excerpt( get_post(), 8 ) . '...'; echo esc_html($content); ?> </p> </div> </div> </div> <?php endwhile; ?> </div> <div class="pagination-layout1"> <?php get_template_part( 'template-parts/pagination' ) ?> </div> </div> </section>
Save
Cancel