File: /home/l2pbkn5l6xav/public_html/wp-content/themes/safha-one-page/inc/template-functions.php
<?php
/**
* Additional features to allow styling of the templates
*/
/**
* Adds custom classes to the array of body classes.
*
* @param array $classes Classes for the body element.
* @return array
*/
function safha_one_page_body_classes( $classes ) {
// Add class of group-blog to blogs with more than 1 published author.
if ( is_multi_author() ) {
$classes[] = 'group-blog';
}
// Add class of hfeed to non-singular pages.
if ( ! is_singular() ) {
$classes[] = 'hfeed';
}
// Add class if we're viewing the Customizer for easier styling of theme options.
if ( is_customize_preview() ) {
$classes[] = 'safha-one-page-customizer';
}
// Add class on front page.
if ( is_front_page() && 'posts' !== get_option( 'show_on_front' ) ) {
$classes[] = 'safha-one-page-front-page';
}
// Add class if sidebar is used.
if ( is_active_sidebar( 'footer-1' ) && ! is_page() ) {
$classes[] = 'has-sidebar';
}
return $classes;
}
add_filter( 'body_class', 'safha_one_page_body_classes' );