> ID ) ){ $post_id = $post->ID; } $bizplus_default_layout_meta = get_post_meta( $post_id, 'bizplus-default-layout', true ); if( false != $bizplus_default_layout_meta ) { $bizplus_default_layout = $bizplus_default_layout_meta; } return $bizplus_default_layout; } endif; if ( ! function_exists( 'bizplus_body_class' ) ) : /** * add body class * * @since BizPlus 0.0.1 * * @param null * @return null * */ function bizplus_body_class( $bizplus_body_classes ) { if(!is_front_page() || ( is_front_page() && 1 != bizplus_if_all_disable())){ $bizplus_default_layout = bizplus_default_layout(); if( !empty( $bizplus_default_layout ) ){ if( 'left-sidebar' == $bizplus_default_layout ){ $bizplus_body_classes[] = 'evision-left-sidebar'; } elseif( 'right-sidebar' == $bizplus_default_layout ){ $bizplus_body_classes[] = 'evision-right-sidebar'; } elseif( 'both-sidebar' == $bizplus_default_layout ){ $bizplus_body_classes[] = 'evision-both-sidebar'; } elseif( 'no-sidebar' == $bizplus_default_layout ){ $bizplus_body_classes[] = 'evision-no-sidebar'; } else{ $bizplus_body_classes[] = 'evision-right-sidebar'; } } else{ $bizplus_body_classes[] = 'evision-right-sidebar'; } } return $bizplus_body_classes; } endif; add_action( 'body_class', 'bizplus_body_class', 10, 1); if ( ! function_exists( 'bizplus_before_page_start' ) ) : /** * intro loader * * @since BizPlus 0.0.1 * * @param null * @return null * */ function bizplus_before_page_start() { global $bizplus_customizer_all_values; /*intro loader*/ } endif; add_action( 'bizplus_action_before', 'bizplus_before_page_start', 10 ); if ( ! function_exists( 'bizplus_page_start' ) ) : /** * page start * * @since BizPlus 0.0.1 * * @param null * @return null * */ function bizplus_page_start() { ?>
'; bizplus_simple_breadcrumb(); echo '
'; return; } endif; add_action( 'bizplus_action_after_title', 'bizplus_add_breadcrumb', 10 );