<?php /** * Custom functions that act independently of the theme templates. * * Eventually, some of the functionality here could be replaced by core features. * * @package Theme Palace * @subpackage Businesszen * @since Businesszen 1.0.0 */ /** * Adds custom classes to the array of body classes. * * @param array $classes Classes for the body element. * @return array */ function businesszen_body_classes( $classes ) { $options = businesszen_get_theme_options(); // Adds a class of group-blog to blogs with more than 1 published author. if ( is_multi_author() ) { $classes[] = 'group-blog'; } // Adds a class of hfeed to non-singular pages. if ( ! is_singular() ) { $classes[] = 'hfeed'; } // Add a class for layout $classes[] = esc_attr( $options['site_layout'] ); // Add a class for sidebar $sidebar_position = businesszen_layout(); $sidebar = 'sidebar-1'; if ( is_singular() || is_home() ) { $id = ( is_home() && ! is_front_page() ) ? get_option( 'page_for_posts' ) : get_the_id(); $sidebar = get_post_meta( $id, 'travel-master-selected-sidebar', true ); $sidebar = ! empty( $sidebar ) ? $sidebar : 'sidebar-1'; } if ( class_exists( 'WooCommerce' ) && is_product() ) { $classes[] = 'no-sidebar'; } elseif ( class_exists( 'WooCommerce' ) && ( is_shop() || is_product_category() || is_product_tag()) && ! is_active_sidebar('woocommerce-sidebar') ) { $classes[] = 'no-sidebar'; } elseif ( is_active_sidebar( $sidebar ) ) { $classes[] = esc_attr( $sidebar_position ); } else { $classes[] = 'no-sidebar'; } if ( class_exists('WooCommerce') ) { $classes[] = 'woocommerce'; } $classes[] = $options['home_layout']; return $classes; } add_filter( 'body_class', 'businesszen_body_classes' );