WP_Widget_Text::enqueue_preview_scripts() WordPress Method

The WP_Widget_Text::enqueue_preview_scripts() method enqueues the necessary scripts for the widget preview. This includes the text editor and a preview frame.

WP_Widget_Text::enqueue_preview_scripts() #

Enqueue 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.


Top ↑

Source

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

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

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


Top ↑

Changelog

Changelog
VersionDescription
4.9.3Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.