Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
template-parts
/
service
/
Editing: content-service-single-1.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; $prefix = Constants::$theme_prefix; $thumb_size = "{$prefix}-size1"; $thumb = Helper::generate_thumbnail_image( get_post(), $thumb_size ); $service_icon = get_post_meta( get_the_ID(), "{$prefix}_service_icon", true ); ?> <section <?php post_class('single-service-box'); ?> id="post-<?php the_ID(); ?>" > <div class="single-service-banner"> <div class="item-img" data-make-bg="<?php echo esc_attr( $thumb ); ?>" > <h2 class="title"><?php the_title() ?></h2> </div> <div class="item-content"> <?php the_content() ?> </div> </div> </section>
Save
Cancel