*/ global $canuck_feature_option, $canuck_feature_category, $canuck_include_breadcrumbs, $canuck_exclude_page_title; $canuck_feature_category = esc_html( ( '' === get_post_meta( $post->ID, 'canuck_metabox_feature_category', true ) ? false : get_post_meta( $post->ID, 'canuck_metabox_feature_category', true ) ) ); $canuck_feature_option = esc_html( ( '' === get_post_meta( $post->ID, 'canuck_metabox_feature_type', true ) ? 'button_nav' : get_post_meta( $post->ID, 'canuck_metabox_feature_type', true ) ) ); $layout_option = sanitize_text_field( ( '' === get_post_meta( $post->ID, 'canuck_metabox_page_layout',true ) ? 'right_sidebar' : get_post_meta( $post->ID, 'canuck_metabox_page_layout',true ) ) ); $canuck_include_breadcrumbs = get_theme_mod( 'canuck_breadcrumbs' ) ? true : false; $canuck_exclude_page_title = get_post_meta( $post->ID, 'canuck_metabox_title', true ) ? true : false; $sidebar_a = esc_html( ( '' === get_post_meta( $post->ID,'canuck_metabox_sidebar_a',true ) ? 'default-a' : get_post_meta( $post->ID, 'canuck_metabox_sidebar_a',true ) ) ); $sidebar_b = esc_html( ( '' === get_post_meta( $post->ID,'canuck_metabox_sidebar_b',true ) ? 'default-b' : get_post_meta( $post->ID, 'canuck_metabox_sidebar_b',true ) ) ); get_header( 'no-feature' ); get_template_part( '/template-parts/partials', 'page-title' ); ?>
'; get_template_part( '/template-parts/sidebars/sidebar', $sidebar_a ); echo ''; echo '
'; get_template_part( '/template-parts/feature-slider-parts/slider', $canuck_feature_option ); echo '

'; get_template_part( '/template-parts/partials', 'page-post' ); echo '
'; } elseif ( 'both_sidebars' === $layout_option ) { echo ''; echo '
'; get_template_part( '/template-parts/feature-slider-parts/slider', $canuck_feature_option ); echo '

'; get_template_part( '/template-parts/partials', 'page-post' ); echo '
'; echo ''; } elseif ( 'fullwidth' === $layout_option ) { echo '
'; get_template_part( '/template-parts/feature-slider-parts/slider', $canuck_feature_option ); echo '

'; get_template_part( '/template-parts/partials', 'page-post' ); echo '
'; } else { echo '
'; get_template_part( '/template-parts/feature-slider-parts/slider', $canuck_feature_option ); echo '

'; get_template_part( '/template-parts/partials', 'page-post' ); echo '
'; echo ''; }// End if(). ?>