WP_Widget_Media_Video::enqueue_preview_scripts() WordPress Method

The WP_Widget_Media_Video::enqueue_preview_scripts() method is used to enqueue the scripts needed for the video widget preview.

WP_Widget_Media_Video::enqueue_preview_scripts() #

Enqueue preview scripts.


Description

These scripts normally are enqueued just-in-time when a video shortcode is used. In the customizer, however, widgets can be dynamically added and rendered via selective refresh, and so it is important to unconditionally enqueue them in case a widget does get added.


Top ↑

Source

File: wp-includes/widgets/class-wp-widget-media-video.php

	public function enqueue_preview_scripts() {
		/** This filter is documented in wp-includes/media.php */
		if ( 'mediaelement' === apply_filters( 'wp_video_shortcode_library', 'mediaelement' ) ) {
			wp_enqueue_style( 'wp-mediaelement' );
			wp_enqueue_script( 'mediaelement-vimeo' );
			wp_enqueue_script( 'wp-mediaelement' );
		}
	}


Top ↑

Changelog

Changelog
VersionDescription
4.8.0Introduced.

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.