161 lines
4.8 KiB
PHP
161 lines
4.8 KiB
PHP
<?php
|
|
|
|
if ( ! function_exists( 'calla_elated_theme_version_class' ) ) {
|
|
/**
|
|
* Function that adds classes on body for version of theme
|
|
*/
|
|
function calla_elated_theme_version_class( $classes ) {
|
|
$current_theme = wp_get_theme();
|
|
|
|
//is child theme activated?
|
|
if ( $current_theme->parent() ) {
|
|
//add child theme version
|
|
$classes[] = strtolower( $current_theme->get( 'Name' ) ) . '-child-ver-' . $current_theme->get( 'Version' );
|
|
|
|
//get parent theme
|
|
$current_theme = $current_theme->parent();
|
|
}
|
|
|
|
if ( $current_theme->exists() && $current_theme->get( 'Version' ) != '' ) {
|
|
$classes[] = strtolower( $current_theme->get( 'Name' ) ) . '-ver-' . $current_theme->get( 'Version' );
|
|
}
|
|
|
|
return $classes;
|
|
}
|
|
|
|
add_filter( 'body_class', 'calla_elated_theme_version_class' );
|
|
}
|
|
|
|
if ( ! function_exists( 'calla_elated_boxed_class' ) ) {
|
|
/**
|
|
* Function that adds classes on body for boxed layout
|
|
*/
|
|
function calla_elated_boxed_class( $classes ) {
|
|
$allow_boxed_layout = true;
|
|
$allow_boxed_layout = apply_filters( 'calla_elated_allow_content_boxed_layout', $allow_boxed_layout );
|
|
|
|
if ( $allow_boxed_layout && calla_elated_get_meta_field_intersect( 'boxed' ) === 'yes' ) {
|
|
$classes[] = 'eltdf-boxed';
|
|
}
|
|
|
|
return $classes;
|
|
}
|
|
|
|
add_filter( 'body_class', 'calla_elated_boxed_class' );
|
|
}
|
|
|
|
if ( ! function_exists( 'calla_elated_paspartu_class' ) ) {
|
|
/**
|
|
* Function that adds classes on body for paspartu layout
|
|
*/
|
|
function calla_elated_paspartu_class( $classes ) {
|
|
$id = calla_elated_get_page_id();
|
|
|
|
//is paspartu layout turned on?
|
|
if ( calla_elated_get_meta_field_intersect( 'paspartu', $id ) === 'yes' ) {
|
|
$classes[] = 'eltdf-paspartu-enabled';
|
|
|
|
if ( calla_elated_get_meta_field_intersect( 'disable_top_paspartu', $id ) === 'yes' ) {
|
|
$classes[] = 'eltdf-top-paspartu-disabled';
|
|
}
|
|
|
|
if ( calla_elated_get_meta_field_intersect( 'enable_fixed_paspartu', $id ) === 'yes' ) {
|
|
$classes[] = 'eltdf-fixed-paspartu-enabled';
|
|
}
|
|
}
|
|
|
|
return $classes;
|
|
}
|
|
|
|
add_filter( 'body_class', 'calla_elated_paspartu_class' );
|
|
}
|
|
|
|
if ( ! function_exists( 'calla_elated_page_smooth_scroll_class' ) ) {
|
|
/**
|
|
* Function that adds classes on body for page smooth scroll
|
|
*/
|
|
function calla_elated_page_smooth_scroll_class( $classes ) {
|
|
//is smooth scroll enabled enabled?
|
|
if ( calla_elated_options()->getOptionValue( 'page_smooth_scroll' ) == 'yes' ) {
|
|
$classes[] = 'eltdf-smooth-scroll';
|
|
}
|
|
|
|
return $classes;
|
|
}
|
|
|
|
add_filter( 'body_class', 'calla_elated_page_smooth_scroll_class' );
|
|
}
|
|
|
|
if ( ! function_exists( 'calla_elated_smooth_page_transitions_class' ) ) {
|
|
/**
|
|
* Function that adds classes on body for smooth page transitions
|
|
*/
|
|
function calla_elated_smooth_page_transitions_class( $classes ) {
|
|
$id = calla_elated_get_page_id();
|
|
|
|
if ( calla_elated_get_meta_field_intersect( 'smooth_page_transitions', $id ) == 'yes' ) {
|
|
$classes[] = 'eltdf-smooth-page-transitions';
|
|
|
|
if ( calla_elated_get_meta_field_intersect( 'page_transition_preloader', $id ) == 'yes' ) {
|
|
$classes[] = 'eltdf-smooth-page-transitions-preloader';
|
|
}
|
|
|
|
if ( calla_elated_get_meta_field_intersect( 'page_transition_fadeout', $id ) == 'yes' ) {
|
|
$classes[] = 'eltdf-smooth-page-transitions-fadeout';
|
|
}
|
|
}
|
|
|
|
return $classes;
|
|
}
|
|
|
|
add_filter( 'body_class', 'calla_elated_smooth_page_transitions_class' );
|
|
}
|
|
|
|
if ( ! function_exists( 'calla_elated_content_initial_width_body_class' ) ) {
|
|
/**
|
|
* Function that adds transparent content class to body.
|
|
*
|
|
* @param $classes array of body classes
|
|
*
|
|
* @return array with transparent content body class added
|
|
*/
|
|
function calla_elated_content_initial_width_body_class( $classes ) {
|
|
$initial_content_width = calla_elated_get_meta_field_intersect( 'initial_content_width', calla_elated_get_page_id() );
|
|
|
|
if ( ! empty( $initial_content_width ) ) {
|
|
$classes[] = $initial_content_width;
|
|
}
|
|
|
|
return $classes;
|
|
}
|
|
|
|
add_filter( 'body_class', 'calla_elated_content_initial_width_body_class' );
|
|
}
|
|
|
|
if ( ! function_exists( 'calla_elated_set_content_behind_header_class' ) ) {
|
|
function calla_elated_set_content_behind_header_class( $classes ) {
|
|
$id = calla_elated_get_page_id();
|
|
|
|
if ( get_post_meta( $id, 'eltdf_page_content_behind_header_meta', true ) === 'yes' ) {
|
|
$classes[] = 'eltdf-content-is-behind-header';
|
|
}
|
|
|
|
return $classes;
|
|
}
|
|
|
|
add_filter( 'body_class', 'calla_elated_set_content_behind_header_class' );
|
|
}
|
|
|
|
if ( ! function_exists( 'calla_elated_set_no_google_api_class' ) ) {
|
|
function calla_elated_set_no_google_api_class( $classes ) {
|
|
$google_map_api = calla_elated_options()->getOptionValue( 'google_maps_api_key' );
|
|
|
|
if ( empty( $google_map_api ) ) {
|
|
$classes[] = 'eltdf-empty-google-api';
|
|
}
|
|
|
|
return $classes;
|
|
}
|
|
|
|
add_filter( 'body_class', 'calla_elated_set_no_google_api_class' );
|
|
} |