WP_Widget_Text::enqueue_preview_scripts()

Enqueue preview scripts.


Description 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 Source

File: wp-includes/widgets/class-wp-widget-text.php

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

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

Top ↑

Changelog Changelog

Changelog
Version Description
4.9.3 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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