$block_text) {
if ($block_text) {
echo '
';
echo '';
echo '' . esc_html($block_text) . '';
echo '
';
}
}
}
endif;
/**
* Site branding
*/
if ( ! function_exists( 'theshop_branding' ) ) :
function theshop_branding() {
if ( get_theme_mod('site_logo') ) :
echo '
';
else :
echo '';
if ( get_bloginfo( 'description' ) ) {
echo '' . esc_html(get_bloginfo( 'description' )) . '
';
}
endif;
}
endif;
/**
* Header slider
*/
if ( ! function_exists( 'theshop_slider' ) ) :
function theshop_slider() {
$images = array();
$images[] = get_theme_mod('slider_image_1', get_template_directory_uri() . '/images/1.jpg');
$images[] = get_theme_mod('slider_image_2', get_template_directory_uri() . '/images/2.jpg');
$images[] = get_theme_mod('slider_image_3');
$images[] = get_theme_mod('slider_image_4');
$images[] = get_theme_mod('slider_image_5');
$links = array();
$links[] = get_theme_mod('slider_link_1');
$links[] = get_theme_mod('slider_link_2');
$links[] = get_theme_mod('slider_link_3');
$links[] = get_theme_mod('slider_link_4');
$links[] = get_theme_mod('slider_link_5');
echo '';
foreach ($images as $index => $image) {
if ($image) {
if ( $links[$index] ) {
echo ' . ')
';
} else {
echo ' . ')
';
}
}
}
echo '
';
}
endif;