%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/themes/eduma/inc/ |
Current File : /var/www/html/ceaa/wp-content/themes/eduma/inc/wrapper-before-after.php |
<?php if ( ! function_exists( 'thim_wrapper_layout' ) ) : function thim_wrapper_layout() { $theme_options_data = get_theme_mods(); $get_post_type = get_post_type(); global $wp_query; $using_custom_layout = $wrapper_layout = $cat_ID = ''; $class_col = 'col-sm-9 alignleft'; if ( $get_post_type == "product" ) { $prefix = 'thim_woo'; } elseif ( $get_post_type == "lpr_course" || $get_post_type == "lpr_quiz" || $get_post_type == "lp_course" || $get_post_type == "lp_quiz" || thim_check_is_course() || thim_check_is_course_taxonomy()) { $prefix = 'thim_learnpress'; } elseif ( $get_post_type == "lp_collection" ) { $prefix = 'thim_collection'; } elseif ( $get_post_type == "portfolio" ) { $prefix = 'thim_portfolio'; } elseif ( $get_post_type == "tp_event" ) { $prefix = 'thim_event'; } elseif ( $get_post_type == "testimonials" ) { $prefix = 'thim_testimonials'; } elseif ( $get_post_type == "our_team" ) { $prefix = 'thim_team'; } elseif ( $get_post_type == "forum" || $get_post_type == "topic" ) { $prefix = 'thim_forum'; }else { if ( is_front_page() || is_home() ) { $prefix = 'thim_front_page'; } elseif ( is_page() ) { $prefix = 'thim_page'; } else { $prefix = 'thim_archive'; } } // get id category $cat_obj = $wp_query->get_queried_object(); if ( isset( $cat_obj->term_id ) ) { $cat_ID = $cat_obj->term_id; } // get layout if ( is_page() || is_single() ) { $postid = get_the_ID(); if ( $get_post_type == "forum" || $get_post_type == "topic" ) { $wrapper_layout = $theme_options_data[ $prefix . '_cate_layout' ]; } if ( isset( $theme_options_data[ $prefix . '_single_layout' ] ) ) { $wrapper_layout = $theme_options_data[ $prefix . '_single_layout' ]; } if( is_page() ) { if ( isset( $theme_options_data[ $prefix . '_layout' ] ) ) { $wrapper_layout = $theme_options_data[ $prefix . '_layout' ]; } } /***********custom layout*************/ $using_custom_layout = get_post_meta( $postid, 'thim_mtb_custom_layout', true ); if ( $using_custom_layout ) { $wrapper_layout = get_post_meta( $postid, 'thim_mtb_layout', true ); } else { /* if ( $get_post_type == "portfolio" ) { $wrapper_layout = 'full-content'; } */ } } else { if ( isset( $theme_options_data[ $prefix . '_cate_layout' ] ) ) { $wrapper_layout = $theme_options_data[ $prefix . '_cate_layout' ]; } if ( $get_post_type == "lp_collection" ) { $wrapper_layout = $theme_options_data[ $prefix . '_single_layout' ]; } /***********custom layout*************/ $using_custom_layout = get_term_meta( $cat_ID, 'thim_layout', true ); if ( $using_custom_layout <> '' ) { $wrapper_layout = get_term_meta( $cat_ID, 'thim_layout', true ); } } /* if ( $get_post_type == "testimonials" || $get_post_type == "our_team" ) { $wrapper_layout = 'full-content'; } */ if ( $wrapper_layout == 'full-content' ) { $class_col = "col-sm-12 full-width"; } if ( $wrapper_layout == 'sidebar-right' ) { $class_col = "col-sm-9 alignleft"; } if ( $wrapper_layout == 'sidebar-left' ) { $class_col = 'col-sm-9 alignright'; } if ( is_post_type_archive( 'tp_event' ) ) { //$class_col = "col-sm-12 full-width"; } return $class_col; } endif; // add_action( 'thim_wrapper_loop_start', 'thim_wrapper_loop_start' ); if ( ! function_exists( 'thim_wrapper_loop_start' ) ) : function thim_wrapper_loop_start() { $class_no_padding = ''; if ( is_page() || is_single() ) { $mtb_no_padding = get_post_meta( get_the_ID(), 'thim_mtb_no_padding', true ); if ( $mtb_no_padding ) { $class_no_padding = ' no-padding-top'; } } $class_col = thim_wrapper_layout(); $sidebar_class = ''; if ( is_404() ) { $class_col = 'col-sm-12 full-width'; } if ( $class_col == "col-sm-9 alignleft" ) { $sidebar_class = ' sidebar-right'; } if ( $class_col == "col-sm-9 alignright" ) { $sidebar_class = ' sidebar-left'; } do_action( 'thim_before_site_content' ); echo '<div class="container site-content' . $sidebar_class . $class_no_padding . '">'; echo '<div class="row"><main id="main" class="site-main ' . $class_col . '">'; } endif; add_action( 'thim_wrapper_loop_end', 'thim_wrapper_loop_end' ); if ( ! function_exists( 'thim_wrapper_loop_end' ) ) : function thim_wrapper_loop_end() { $class_col = thim_wrapper_layout(); $get_post_type = get_post_type(); if ( is_404() ) { $class_col = 'col-sm-12 full-width'; } echo '</main>'; if ( $class_col != 'col-sm-12 full-width' ) { if ( $get_post_type == "lpr_course" || $get_post_type == "lpr_quiz" || $get_post_type == "lp_course" || $get_post_type == "lp_quiz" || thim_check_is_course() || thim_check_is_course_taxonomy() ) { get_sidebar( 'courses' ); } else if ( $get_post_type == "tp_event" ) { get_sidebar( 'events' ); } else if ( $get_post_type == "product" ) { get_sidebar( 'shop' ); } else { get_sidebar(); } } echo '</div>'; do_action( 'thim_after_site_content' ); echo '</div>'; } endif;