芝麻web文件管理V1.00
编辑当前文件:/home/seolotod/www/wp-content/themes/brunn/includes/qodef-body-class-functions.php
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', 'brunn_select_theme_version_class' ); } if ( ! function_exists( 'brunn_select_boxed_class' ) ) { /** * Function that adds classes on body for boxed layout */ function brunn_select_boxed_class( $classes ) { $allow_boxed_layout = true; $allow_boxed_layout = apply_filters( 'brunn_select_filter_allow_content_boxed_layout', $allow_boxed_layout ); if ( $allow_boxed_layout && brunn_select_get_meta_field_intersect( 'boxed' ) === 'yes' ) { $classes[] = 'qodef-boxed'; } return $classes; } add_filter( 'body_class', 'brunn_select_boxed_class' ); } if ( ! function_exists( 'brunn_select_paspartu_class' ) ) { /** * Function that adds classes on body for paspartu layout */ function brunn_select_paspartu_class( $classes ) { $id = brunn_select_get_page_id(); //is paspartu layout turned on? if ( brunn_select_get_meta_field_intersect( 'paspartu', $id ) === 'yes' ) { $classes[] = 'qodef-paspartu-enabled'; if ( brunn_select_get_meta_field_intersect( 'disable_top_paspartu', $id ) === 'yes' ) { $classes[] = 'qodef-top-paspartu-disabled'; } if ( brunn_select_get_meta_field_intersect( 'enable_fixed_paspartu', $id ) === 'yes' ) { $classes[] = 'qodef-fixed-paspartu-enabled'; } } return $classes; } add_filter( 'body_class', 'brunn_select_paspartu_class' ); } if ( ! function_exists( 'brunn_select_page_smooth_scroll_class' ) ) { /** * Function that adds classes on body for page smooth scroll */ function brunn_select_page_smooth_scroll_class( $classes ) { //is smooth scroll enabled enabled? if ( brunn_select_options()->getOptionValue( 'page_smooth_scroll' ) == 'yes' ) { $classes[] = 'qodef-smooth-scroll'; } return $classes; } add_filter( 'body_class', 'brunn_select_page_smooth_scroll_class' ); } if ( ! function_exists( 'brunn_select_smooth_page_transitions_class' ) ) { /** * Function that adds classes on body for smooth page transitions */ function brunn_select_smooth_page_transitions_class( $classes ) { $id = brunn_select_get_page_id(); if ( brunn_select_get_meta_field_intersect( 'smooth_page_transitions', $id ) == 'yes' ) { $classes[] = 'qodef-smooth-page-transitions'; if ( brunn_select_get_meta_field_intersect( 'page_transition_preloader', $id ) == 'yes' ) { $classes[] = 'qodef-smooth-page-transitions-preloader'; } if ( brunn_select_get_meta_field_intersect( 'page_transition_fadeout', $id ) == 'yes' ) { $classes[] = 'qodef-smooth-page-transitions-fadeout'; } } return $classes; } add_filter( 'body_class', 'brunn_select_smooth_page_transitions_class' ); } if ( ! function_exists( 'brunn_select_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 brunn_select_content_initial_width_body_class( $classes ) { $initial_content_width = brunn_select_get_meta_field_intersect( 'initial_content_width', brunn_select_get_page_id() ); if ( ! empty( $initial_content_width ) ) { $classes[] = $initial_content_width; } return $classes; } add_filter( 'body_class', 'brunn_select_content_initial_width_body_class' ); } if ( ! function_exists( 'brunn_select_set_content_behind_header_class' ) ) { function brunn_select_set_content_behind_header_class( $classes ) { $id = brunn_select_get_page_id(); if ( get_post_meta( $id, 'qodef_page_content_behind_header_meta', true ) === 'yes' ) { $classes[] = 'qodef-content-is-behind-header'; } return $classes; } add_filter( 'body_class', 'brunn_select_set_content_behind_header_class' ); } if ( ! function_exists( 'brunn_select_set_no_google_api_class' ) ) { function brunn_select_set_no_google_api_class( $classes ) { $google_map_api = brunn_select_options()->getOptionValue( 'google_maps_api_key' ); if ( empty( $google_map_api ) ) { $classes[] = 'qodef-empty-google-api'; } return $classes; } add_filter( 'body_class', 'brunn_select_set_no_google_api_class' ); } if ( ! function_exists( 'brunn_select_wide_menu_body_class' ) ) { /** * Function that adds wide menu width control classes to body. * * @param $classes array of body classes * * @return array with wide menu width control body classes added */ function brunn_select_wide_menu_body_class( $classes ) { $wide_dropdown_menu_in_grid = brunn_select_get_meta_field_intersect( 'wide_dropdown_menu_in_grid', brunn_select_get_page_id() ); $wide_dropdown_menu_in_grid_meta = get_post_meta( brunn_select_get_page_id(), 'qodef_wide_dropdown_menu_in_grid_meta', true ); $wide_dropdown_menu_content_in_grid = brunn_select_get_meta_field_intersect( 'wide_dropdown_menu_content_in_grid', brunn_select_get_page_id() ); $wide_dropdown_menu_content_in_grid_global = brunn_select_options()->getOptionValue( 'wide_dropdown_menu_content_in_grid' ); if ( $wide_dropdown_menu_in_grid === 'yes' ) { $classes[] = 'qodef-wide-dropdown-menu-in-grid'; } else if ( ! empty( $wide_dropdown_menu_in_grid_meta ) && $wide_dropdown_menu_content_in_grid === 'yes' || $wide_dropdown_menu_content_in_grid_global === 'yes' ) { $classes[] = 'qodef-wide-dropdown-menu-content-in-grid'; } return $classes; } add_filter( 'body_class', 'brunn_select_wide_menu_body_class' ); }