WP_Widget_Text::enqueue_preview_scripts()

In this article

Enqueues preview scripts.

Description

These scripts normally are enqueued just-in-time when a playlist shortcode is used.
However, in the customizer, a playlist shortcode may be used in a text widget and dynamically added via selective refresh, so it is important to unconditionally enqueue them.

Source

public function enqueue_preview_scripts() {
	require_once dirname( __DIR__ ) . '/media.php';

	wp_playlist_scripts( 'audio' );
	wp_playlist_scripts( 'video' );
}

Changelog

VersionDescription
4.9.3Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.