Elementor 开发者文档

title: "开关控件" post_status: publish comment_status: open taxonomy: category: - elementor-developers-docs post_tag: - Editor Controls - Src - Repos


开关控件

Switcher Control

Elementor 开关控件显示一个开/关切换器。它本质上是复选框的一种精美表现形式。

Checked Switcher Control

该控件定义在继承 Base_Data_Control 类的 Control_Switcher 类中。

使用此控件时,应将 type 设置为 \Elementor\Controls_Manager::SWITCHER 常量。

参数

名称 类型 默认值 描述
type string switcher 控件的类型。
label string 显示在字段上方的标签。
description string 显示在字段下方的描述。
show_label bool true 是否显示标签。
label_block bool false 是否在单独一行显示标签。
separator string default 设置控件分隔符的位置。可用值为 defaultbeforeafterdefault 将隐藏分隔符,除非控件类型有特定的分隔符设置。before / after 会将分隔符定位在控件之前/之后。
label_on string Yes “未选中”状态的标签。
label_off string No “已选中”状态的标签。
return_value string yes 选中时返回的值。
default string 字段的默认值。

Return Value

(string) The switcher field value, based on return_value argument.

Usage

```php {14-24,41-43,48-50}

start_controls_section( 'content_section', [ 'label' => esc_html__( 'Content', 'textdomain' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'show_title', [ 'label' => esc_html__( 'Show Title', 'textdomain' ), 'type' => \Elementor\Controls_Manager::SWITCHER, 'label_on' => esc_html__( 'Show', 'textdomain' ), 'label_off' => esc_html__( 'Hide', 'textdomain' ), 'return_value' => 'yes', 'default' => 'yes', ] ); $this->add_control( 'title', [ 'label' => esc_html__( 'Title', 'textdomain' ), 'type' => \Elementor\Controls_Manager::TEXT, 'default' => esc_html__( 'Default title', 'textdomain' ), ] ); $this->end_controls_section(); } protected function render(): void { $settings = $this->get_settings_for_display(); if ( 'yes' === $settings['show_title'] ) { echo '

' . $settings['title'] . '

'; } } protected function content_template(): void { ?>
    <# if ( 'yes' === settings.show_title ) { #>
        <h2>{{{ settings.title }}}</h2>
    <# } #>
    <?php
}

} ```