title: "文本域控件" post_status: publish comment_status: open taxonomy: category: - elementor-developers-docs post_tag: - Editor Controls - Src - Repos
文本域控件
Elementor 文本域控件显示一个经典的多行文本输入框,并支持设置 rows(行数)属性。
该控件定义在继承 Base_Data_Control 类的 Control_Textarea 类中。
使用此控件时,应将 type 参数设置为 \Elementor\Controls_Manager::TEXTAREA 常量。
参数
| 名称 | 类型 | 默认值 | 描述 |
|---|---|---|---|
type |
string |
textarea | 控件的类型。 |
label |
string |
显示在字段上方的标签。 | |
description |
string |
显示在字段下方的描述。 | |
show_label |
bool |
true | 是否显示标签。 |
label_block |
bool |
true | 是否在单独一行显示标签。 |
separator |
string |
default | 设置控件分隔符的位置。可用值为 default、before 和 after。default 将隐藏分隔符,除非控件类型有特定的分隔符设置。before / after 会将分隔符定位在控件之前/之后。 |
rows |
int |
5 | 行数。 |
placeholder |
string |
当字段没有值时显示的占位符。 | |
default |
string |
字段的默认值。 |
Return Value
(string) The textarea field value.
Usage
```php {14-23,36-38,49-51}
start_controls_section( 'content_section', [ 'label' => esc_html__( 'Content', 'textdomain' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'item_description', [ 'label' => esc_html__( 'Description', 'textdomain' ), 'type' => \Elementor\Controls_Manager::TEXTAREA, 'rows' => 10, 'default' => esc_html__( 'Default description', 'textdomain' ), 'placeholder' => esc_html__( 'Type your description here', 'textdomain' ), ] ); $this->end_controls_section(); } protected function render(): void { $settings = $this->get_settings_for_display(); if ( empty( $settings['item_description'] ) ) { return; } ?> <p class="description">
<?php echo $settings['item_description']; ?>
</p>
<?php
}
protected function content_template(): void {
?>
<#
if ( '' === settings.item_description ) {
return;
}
#>
<p class="description">
{{{ settings.item_description }}}
</p>
<?php
}
} ```