Файловый менеджер - Редактировать - /home/avadvi5/public_html/wp-content/themes/code4rest/inc/customizer/options/header-secondary-navigation-options.php
Ðазад
<?php /** * Header Builder Options * * @package Code4rest */ namespace Code4rest; use Code4rest\Theme_Customizer; use function Code4rest\code4rest; ob_start(); ?> <div class="code4rest-compontent-tabs nav-tab-wrapper wp-clearfix"> <a href="#" class="nav-tab code4rest-general-tab code4rest-compontent-tabs-button nav-tab-active" data-tab="general"> <span><?php esc_html_e( 'General', 'code4rest' ); ?></span> </a> <a href="#" class="nav-tab code4rest-design-tab code4rest-compontent-tabs-button" data-tab="design"> <span><?php esc_html_e( 'Design', 'code4rest' ); ?></span> </a> </div> <?php $compontent_tabs = ob_get_clean(); $settings = array( 'secondary_navigation_tabs' => array( 'control_type' => 'code4rest_blank_control', 'section' => 'secondary_navigation', 'settings' => false, 'priority' => 1, 'description' => $compontent_tabs, ), 'secondary_navigation_link' => array( 'control_type' => 'code4rest_focus_button_control', 'section' => 'secondary_navigation', 'settings' => false, 'priority' => 5, 'label' => esc_html__( 'Select Menu', 'code4rest' ), 'context' => array( array( 'setting' => '__current_tab', 'value' => 'general', ), ), 'input_attrs' => array( 'section' => 'menu_locations', ), ), 'secondary_navigation_spacing' => array( 'control_type' => 'code4rest_range_control', 'section' => 'secondary_navigation', 'priority' => 5, 'label' => esc_html__( 'Items Spacing', 'code4rest' ), 'context' => array( array( 'setting' => '__current_tab', 'value' => 'general', ), ), 'live_method' => array( array( 'type' => 'css', 'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a', 'property' => 'padding-left', 'pattern' => 'calc($ / 2)', 'key' => 'size', ), array( 'type' => 'css', 'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a', 'property' => 'padding-right', 'pattern' => 'calc($ / 2)', 'key' => 'size', ), ), 'default' => code4rest()->default( 'secondary_navigation_spacing' ), 'input_attrs' => array( 'min' => array( 'px' => 0, 'em' => 0, 'rem' => 0, 'vw' => 0, ), 'max' => array( 'px' => 100, 'em' => 12, 'rem' => 12, 'vw' => 12, ), 'step' => array( 'px' => 1, 'em' => 0.01, 'rem' => 0.01, 'vw' => 0.01, ), 'units' => array( 'px', 'em', 'rem', 'vw' ), 'responsive' => false, ), ), 'secondary_navigation_stretch' => array( 'control_type' => 'code4rest_switch_control', 'sanitize' => 'code4rest_sanitize_toggle', 'section' => 'secondary_navigation', 'priority' => 6, 'default' => code4rest()->default( 'secondary_navigation_stretch' ), 'label' => esc_html__( 'Stretch Menu?', 'code4rest' ), 'context' => array( array( 'setting' => '__current_tab', 'value' => 'general', ), ), 'live_method' => array( array( 'type' => 'class', 'selector' => '.site-header-item-secondary-navigation', 'pattern' => 'header-navigation-layout-stretch-$', 'key' => 'switch', ), ), ), 'secondary_navigation_fill_stretch' => array( 'control_type' => 'code4rest_switch_control', 'sanitize' => 'code4rest_sanitize_toggle', 'section' => 'secondary_navigation', 'priority' => 6, 'default' => code4rest()->default( 'secondary_navigation_fill_stretch' ), 'label' => esc_html__( 'Fill and Center Menu Items?', 'code4rest' ), 'context' => array( array( 'setting' => '__current_tab', 'value' => 'general', ), array( 'setting' => 'secondary_navigation_stretch', 'operator' => '==', 'value' => true, ), ), 'live_method' => array( array( 'type' => 'class', 'selector' => '.site-header-item-secondary-navigation', 'pattern' => 'header-navigation-layout-fill-stretch-$', 'key' => 'switch', ), ), ), 'secondary_navigation_style' => array( 'control_type' => 'code4rest_radio_icon_control', 'section' => 'secondary_navigation', 'priority' => 10, 'default' => code4rest()->default( 'secondary_navigation_style' ), 'label' => esc_html__( 'Navigation Style', 'code4rest' ), 'context' => array( array( 'setting' => '__current_tab', 'value' => 'design', ), ), 'live_method' => array( array( 'type' => 'class', 'selector' => '.secondary-navigation', 'pattern' => 'header-navigation-style-$', 'key' => '', ), ), 'input_attrs' => array( 'layout' => array( 'standard' => array( 'tooltip' => __( 'Standard', 'code4rest' ), 'name' => __( 'Standard', 'code4rest' ), 'icon' => '', ), 'fullheight' => array( 'tooltip' => __( 'Menu items are full height', 'code4rest' ), 'name' => __( 'Full Height', 'code4rest' ), 'icon' => '', ), 'underline' => array( 'tooltip' => __( 'Underline Hover/Active', 'code4rest' ), 'name' => __( 'Underline', 'code4rest' ), 'icon' => '', ), 'underline-fullheight' => array( 'tooltip' => __( 'Full Height Underline Hover/Active', 'code4rest' ), 'name' => __( 'Full Height Underline', 'code4rest' ), 'icon' => '', ), ), 'responsive' => false, 'class' => 'radio-btn-width-50', ), ), 'secondary_navigation_vertical_spacing' => array( 'control_type' => 'code4rest_range_control', 'section' => 'secondary_navigation', 'label' => esc_html__( 'Items Top and Bottom Padding', 'code4rest' ), 'context' => array( array( 'setting' => '__current_tab', 'value' => 'design', ), array( 'setting' => 'secondary_navigation_style', 'operator' => 'sub_object_does_not_contain', 'sub_key' => 'layout', 'responsive' => false, 'value' => 'fullheight', ), ), 'live_method' => array( array( 'type' => 'css', 'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a', 'property' => 'padding-top', 'pattern' => '$', 'key' => 'size', ), array( 'type' => 'css', 'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a', 'property' => 'padding-bottom', 'pattern' => '$', 'key' => 'size', ), ), 'default' => code4rest()->default( 'secondary_navigation_vertical_spacing' ), 'input_attrs' => array( 'min' => array( 'px' => 0, 'em' => 0, 'rem' => 0, 'vh' => 0, ), 'max' => array( 'px' => 100, 'em' => 12, 'rem' => 12, 'vh' => 12, ), 'step' => array( 'px' => 1, 'em' => 0.01, 'rem' => 0.01, 'vh' => 0.01, ), 'units' => array( 'px', 'em', 'rem', 'vh' ), 'responsive' => false, ), ), 'secondary_navigation_color' => array( 'control_type' => 'code4rest_color_control', 'section' => 'secondary_navigation', 'label' => esc_html__( 'Navigation Colors', 'code4rest' ), 'default' => code4rest()->default( 'secondary_navigation_color' ), 'live_method' => array( array( 'type' => 'css', 'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a', 'property' => 'color', 'pattern' => '$', 'key' => 'color', ), array( 'type' => 'css', 'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a:hover', 'property' => 'color', 'pattern' => '$', 'key' => 'hover', ), array( 'type' => 'css', 'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item.current-menu-item > a, .secondary-navigation .secondary-menu-container > ul > li.current_page_item > a', 'property' => 'color', 'pattern' => '$', 'key' => 'active', ), ), 'context' => array( array( 'setting' => '__current_tab', 'value' => 'design', ), ), 'input_attrs' => array( 'colors' => array( 'color' => array( 'tooltip' => __( 'Initial Color', 'code4rest' ), 'palette' => true, ), 'hover' => array( 'tooltip' => __( 'Hover Color', 'code4rest' ), 'palette' => true, ), 'active' => array( 'tooltip' => __( 'Active Color', 'code4rest' ), 'palette' => true, ), ), ), ), 'secondary_navigation_background' => array( 'control_type' => 'code4rest_color_control', 'section' => 'secondary_navigation', 'label' => esc_html__( 'Navigation Background', 'code4rest' ), 'default' => code4rest()->default( 'secondary_navigation_background' ), 'live_method' => array( array( 'type' => 'css', 'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a', 'property' => 'background', 'pattern' => '$', 'key' => 'color', ), array( 'type' => 'css', 'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item > a:hover', 'property' => 'background', 'pattern' => '$', 'key' => 'hover', ), array( 'type' => 'css', 'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item.current-menu-item > a, .secondary-navigation .secondary-menu-container > ul > li.current_page_item > a', 'property' => 'background', 'pattern' => '$', 'key' => 'active', ), ), 'context' => array( array( 'setting' => '__current_tab', 'value' => 'design', ), ), 'input_attrs' => array( 'colors' => array( 'color' => array( 'tooltip' => __( 'Initial Background', 'code4rest' ), 'palette' => true, ), 'hover' => array( 'tooltip' => __( 'Hover Background', 'code4rest' ), 'palette' => true, ), 'active' => array( 'tooltip' => __( 'Active Background', 'code4rest' ), 'palette' => true, ), ), ), ), 'secondary_navigation_parent_active' => array( 'control_type' => 'code4rest_switch_control', 'sanitize' => 'code4rest_sanitize_toggle', 'section' => 'secondary_navigation', 'default' => code4rest()->default( 'secondary_navigation_parent_active' ), 'label' => esc_html__( 'Make Parent of Current Menu Item Active?', 'code4rest' ), 'context' => array( array( 'setting' => '__current_tab', 'value' => 'design', ), ), ), 'secondary_navigation_typography' => array( 'control_type' => 'code4rest_typography_control', 'section' => 'secondary_navigation', 'label' => esc_html__( 'Navigation Font', 'code4rest' ), 'context' => array( array( 'setting' => '__current_tab', 'value' => 'design', ), ), 'default' => code4rest()->default( 'secondary_navigation_typography' ), 'live_method' => array( array( 'type' => 'css_typography', 'selector' => '.secondary-navigation .secondary-menu-container > ul > li.menu-item a', 'pattern' => array( 'desktop' => '$', 'tablet' => '$', 'mobile' => '$', ), 'property' => 'font', 'key' => 'typography', ), ), 'input_attrs' => array( 'id' => 'secondary_navigation_typography', 'options' => 'no-color', ), ), 'info_secondary_submenu' => array( 'control_type' => 'code4rest_title_control', 'section' => 'secondary_navigation', 'priority' => 20, 'label' => esc_html__( 'Dropdown Options', 'code4rest' ), 'settings' => false, ), 'secondary_dropdown_link' => array( 'control_type' => 'code4rest_focus_button_control', 'section' => 'secondary_navigation', 'settings' => false, 'priority' => 20, 'label' => esc_html__( 'Dropdown Options', 'code4rest' ), 'input_attrs' => array( 'section' => 'code4rest_customizer_dropdown_navigation', ), ), ); Theme_Customizer::add_settings( $settings );
| ver. 1.1 | |
.
| PHP 8.3.30 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка