Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
template-parts
/
Editing: content-banner.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; if ( !RDTheme::$has_banner ) { return; } $breadcrumb_class = ""; if ( function_exists( 'bcn_display') ) { $breadcrumb_class = "bcn_display"; } ?> <?php $beforeClassName = 'has-before'; // for dark overlay if (RDTheme::$bgtype == 'bgimg') { $bgimg = RDTheme::$bgimg; $bgstyle = sprintf( "background-image: url( %s )", $bgimg); ; if (!$bgimg) { $bgstyle = sprintf( "background-image: url( %s )", Helper::get_img('default-banner.jpg')); ; } } elseif (RDTheme::$bgtype == 'bgcolor') { $bgcolor = RDTheme::$bgcolor; $bgstyle = sprintf( "background-color: %s ", $bgcolor); ; $beforeClassName = ''; } ?> <section class="inner-page-banner bg-common inner-page-top-margin <?php echo esc_html( $beforeClassName ); ?>" style="<?php echo esc_attr($bgstyle); ?>" > <div class="container"> <div class="row"> <div class="col-12"> <div class="breadcrumbs-area <?php echo esc_attr( $breadcrumb_class ); ?>"> <h1><?php Helper::the_title(); ?></h1> <?php if (RDTheme::$options['breadcrumb']): ?> <?php Helper::the_breadcrumb(); ?> <?php endif ?> </div> </div> </div> </div> </section>
Save
Cancel