';
basetheme_fnc_breadcrumbs();
echo '
';
}
add_action( 'basetheme_template_header_after', 'prestabrain_fnc_render_breadcrumbs' );
/**
* Main Container
*/
function basetheme_template_main_container_class( $class ){
global $post;
global $edubase_wpopconfig;
$layoutcls = get_post_meta( $post->ID, 'basetheme_enable_fullwidth_layout', 1 );
if( $layoutcls ) {
$edubase_wpopconfig['layout'] = 'fullwidth';
return 'container-fluid';
}
return $class;
}
add_filter( 'basetheme_template_main_container_class', 'basetheme_template_main_container_class', 1 , 1 );