Custom_Image_Header::js_includes()

In this article

Sets up the enqueue for the JavaScript files.

Source

public function js_includes() {
	$step = $this->step();

	if ( ( 1 === $step || 3 === $step ) ) {
		wp_enqueue_media();
		wp_enqueue_script( 'custom-header' );
		if ( current_theme_supports( 'custom-header', 'header-text' ) ) {
			wp_enqueue_script( 'wp-color-picker' );
		}
	} elseif ( 2 === $step ) {
		wp_enqueue_script( 'imgareaselect' );
	}
}

Changelog

VersionDescription
2.1.0Introduced.

User Contributed Notes

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