WP_Widget_Text::enqueue_admin_scripts() WordPress Method

This function is used to enqueue the required admin scripts for the widget.

WP_Widget_Text::enqueue_admin_scripts() #

Loads the required scripts and styles for the widget control.


Source

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

	public function enqueue_admin_scripts() {
		wp_enqueue_editor();
		wp_enqueue_media();
		wp_enqueue_script( 'text-widgets' );
		wp_add_inline_script( 'text-widgets', 'wp.textWidgets.init();', 'after' );
	}


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.