| Server IP : 54.36.91.62 / Your IP : 216.73.216.15 Web Server : Apache System : Linux webm021.cluster127.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : uxhactp ( 169076) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/u/x/h/uxhactp/www/wp-content/themes/applica/classes/ |
Upload File : |
<?php
/**
* Adds custom classes to the array of body classes.
*
* @param array $classes Classes for the body element.
* @return array
*/
function applica_body_classes( $classes ) {
// Adds a class of hfeed to non-singular pages.
if ( ! is_singular() ) {
$classes[] = 'hfeed';
}
$header_style = applica_get_option('header_style');
$classes[] = ' applica-'.$header_style;
// Get the color mode of the site.
$enable_dark_mode = applica_get_option( 'enable_dark_mode' );
if ( $enable_dark_mode ) {
$classes[] = 'applica-dark-mode';
} else {
$classes[] = 'applica-light-mode';
}
// Get appropriate class for the sidebar layout to work
$page_layout = applica_get_page_layout();
if('no-sidebar' != $page_layout ){
$classes[] = 'has-sidebar '.esc_attr($page_layout);
}else{
$classes[] = esc_attr($page_layout);
}
return $classes;
}
add_filter( 'body_class', 'applica_body_classes' );