%PDF- %PDF-
| Direktori : /home/casasmonvl/ges4t.old/wp-content/themes/bizlight/inc/hooks/ |
| Current File : /home/casasmonvl/ges4t.old/wp-content/themes/bizlight/inc/hooks/homepage-featured.php |
<?php
if ( ! function_exists( 'bizlight_home_featured' ) ) :
/**
* Featured Slider
*
* @since Bizlight 1.0.0
*
* @param null
* @return null
*
*/
function bizlight_home_featured() {
global $bizlight_customizer_all_values;
$bizlight_home_featured_title = $bizlight_customizer_all_values['bizlight-home-featured-title'];
$bizlight_home_featured_button_url = $bizlight_customizer_all_values['bizlight-home-featured-button-url'];
if( 1 != $bizlight_customizer_all_values['bizlight-home-featured-enable'] ){
return null;
}
?>
<section class="evision-wrapper block-section wrap-highlight">
<div class="container evision-animate fadeInUp">
<h2><?php echo esc_html( $bizlight_home_featured_title ); ?></h2>
<?php
if( !empty( $bizlight_home_featured_button_url )){
?>
<div class="btn-container btn-outline">
<a class="button" href="<?php echo esc_url( $bizlight_home_featured_button_url ); ?>">
<?php _e('LEARN MORE', 'bizlight');?>
</a>
</div>
<?php
}
?>
</div>
</section><!-- highlight section -->
<?php
}
endif;
add_action( 'homepage', 'bizlight_home_featured', 20 );