hp
if($theme_option['enable-boxed-style'] == 'boxed-style'){
$body_wrapper .= 'gdlr-boxed-style';
if( !empty($theme_option['boxed-background-image']) && is_numeric($theme_option['boxed-background-image']) ){
$alt_text = get_post_meta($theme_option['boxed-background-image'] , '_wp_attachment_image_alt', true);
$image_src = wp_get_attachment_image_src($theme_option['boxed-background-image'], 'full');
echo '';
}else if( !empty($theme_option['boxed-background-image']) ){
echo '';
}
}
global $header_style;
if( !empty($gdlr_post_option['header-style']) && $gdlr_post_option['header-style'] != 'default' ){
$header_style = $gdlr_post_option['header-style'];
}else{
$header_style = empty($theme_option['default-header-style'])? 'solid': $theme_option['default-header-style'];
}
$body_wrapper .= ($theme_option['enable-float-menu'] != 'disable')? ' float-menu': '';
$body_wrapper .= empty($theme_option['body-icon-color'])? ' gdlr-icon-dark': ' gdlr-icon-' . $theme_option['body-icon-color'];
$body_wrapper .= ' gdlr-header-' . $header_style;
?>