title: "通知控件" post_status: publish comment_status: open taxonomy: category: - elementor-developers-docs post_tag: - Editor Controls - Src - Repos
通知控件
Elementor 通知控件根据消息的严重程度,在面板中显示四种类型的通知:信息、成功、警告和危险。
与警告控件不同,通知控件可以选择设置为可关闭,允许用户关闭消息并且不再显示。
该控件在继承 Base_UI_Control 类的 Control_Notice 类中定义。
使用此控件时,应将 type 设置为 \Elementor\Controls_Manager::NOTICE 常量。
参数
| 名称 | 类型 | 默认值 | 描述 |
|---|---|---|---|
type |
string |
notice | 控件的类型。 |
separator |
string |
default | 设置控件分隔符的位置。可用值为 default、before 和 after。default 将隐藏分隔符,除非控件类型有特定的分隔符设置。before / after 将分隔符定位在控件之前/之后。 |
notice_type |
string |
info | 通知的类型。可用值为 info、success、warning 和 danger。 |
dismissible |
bool |
false | 允许用户关闭通知。 |
heading |
string |
显示在通知上方的标题。 | |
content |
string |
通知的内容。 |
返回值
此控件不返回任何值。
用法
```php {14-23}
start_controls_section( 'content_section', [ 'label' => esc_html__( 'Content', 'textdomain' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'custom_panel_notice', [ 'type' => \Elementor\Controls_Manager::NOTICE, 'notice_type' => 'warning', 'dismissible' => true, 'heading' => esc_html__( 'Custom Notice', 'textdomain' ), 'content' => esc_html__( 'Lorem ipsum dolor sit amet consectetur adipisicing elit.', 'textdomain' ), ] ); $this->end_controls_section(); } } ``` ?>