title: "媒体控件" post_status: publish comment_status: open taxonomy: category: - elementor-developers-docs post_tag: - Editor Controls - Src - Repos
媒体控件
Elementor 媒体控件基于 WordPress 媒体库显示媒体选择器部分,允许用户从媒体库中选择图像。
该控件在继承 Control_Base_Multiple 类的 Control_Media 类中定义。
使用此控件时,应将 type 设置为 \Elementor\Controls_Manager::MEDIA 常量。
参数
| 名称 | 类型 | 默认值 | 描述 |
|---|---|---|---|
type |
string |
media | 控件的类型。 |
label |
string |
显示在字段上方的标签。 | |
description |
string |
显示在字段下方的描述。 | |
show_label |
bool |
true | 是否显示标签。 |
label_block |
bool |
true | 是否在单独一行显示标签。 |
separator |
string |
default | 设置控件分隔符的位置。可用值为 default、before 和 after。default 将隐藏分隔符,除非控件类型有特定的分隔符设置。before / after 会将分隔符定位在控件之前/之后。 |
media_types |
array |
['image'] | 支持的媒体类型。可用值为 image、video、svg、application/pdf 等。 |
default |
array |
默认媒体值。
|
Return Value
[
'id' => '',
'url' => '',
]
(array) An array containing image data:
- $id (
int) Media id. - $url (
string) Media url.
Usage
Add an image:
```php {14-23,36-37,39-40,42-47,52-69}
start_controls_section( 'content_section', [ 'label' => esc_html__( 'Content', 'textdomain' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'image', [ 'label' => esc_html__( 'Choose Image', 'textdomain' ), 'type' => \Elementor\Controls_Manager::MEDIA, 'default' => [ 'url' => \Elementor\Utils::get_placeholder_image_src(), ], ] ); $this->end_controls_section(); } protected function render(): void { $settings = $this->get_settings_for_display(); if ( empty( $settings['image']['url'] ) ) { return; } // Get image URL echo ' <#
if ( '' === settings.image.url ) {
return;
}
const image = {
id: settings.image.id,
url: settings.image.url,
size: settings.image_size,
dimension: settings.image_custom_dimension,
model: view.getEditModel()
};
const image_url = elementor.imagesManager.getImageUrl( image );
if ( '' === image_url ) {
return;
}
#>
<img src="{{ image_url }}">
<?php
}
}
Add a video media type to display a self hosted video:
```php
<?php
class Elementor_Test_Widget extends \Elementor\Widget_Base {
protected function register_controls(): void {
$this->start_controls_section(
'content_section',
[
'label' => esc_html__( 'Content', 'textdomain' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'video',
[
'label' => esc_html__( 'Choose Video File', 'textdomain' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'media_types' => [ 'video' ],
'default' => [
'url' => \Elementor\Utils::get_placeholder_image_src(),
],
]
);
$this->end_controls_section();
}
protected function render(): void {
$settings = $this->get_settings_for_display();
$video_url = $settings['video']['url'];
if ( empty( $video_url ) ) {
return;
}
?>
<video src="<?php echo esc_attr( $video_url ); ?>" class="elementor-video"></video>
<?php
}
protected function content_template(): void {
?>
<#
const video_url = settings.video.url;
if ( '' === video_url ) {
return;
}
#>
<video src="{{ video_url }}" class="elementor-video"></video>
<?php
}
}
Add a PDF file:
<?php
class Elementor_Test_Widget extends \Elementor\Widget_Base {
protected function register_controls(): void {
$this->start_controls_section(
'content_section',
[
'label' => esc_html__( 'Content', 'textdomain' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'pdf',
[
'label' => esc_html__( 'Choose PDF', 'textdomain' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'media_types' => [ 'application/pdf' ],
]
);
$this->end_controls_section();
}
protected function render(): void {
$settings = $this->get_settings_for_display();
$pdf_url = $settings['pdf']['url'];
if ( ! empty( $pdf_url ) ) {
return;
}
?>
<a download href="<?php echo esc_attr( $pdf_url ); ?>">
<?php echo esc_html__( 'Download PDF', 'textdomain' ); ?>
</a>
<?php
}
protected function content_template(): void {
?>
<#
const pdf_url = settings.pdf.url;
if ( '' === pdf_url ) {
return;
}
#>
<a download src="{{ pdf_url }}">
<?php echo esc_html__( 'Download PDF', 'textdomain' ); ?>
</a>
<?php
}
}