*/ /* Get the user choices for the theme options */ global $blogbox_options; $layout_option = $blogbox_options['bB_blog_layout_option']; if( $layout_option == 'fullwidth-no slider or home sections') { get_template_part( '/template-parts/blog', 'fullwidth' ); } else if($layout_option == 'feature slider plus home sections' ) { get_template_part( '/template-parts/blog', 'feature' ); } else { get_template_part( '/template-parts/blog', 'normal' ); }