WP_Customize_Manager::_sanitize_external_header_video( string $value ): string

In this article

Callback for sanitizing the external_header_video value.

Parameters

$valuestringrequired
URL.

Return

string Sanitized URL.

Source

public function _sanitize_external_header_video( $value ) {
	return sanitize_url( trim( $value ) );
}

Changelog

VersionDescription
4.7.1Introduced.

User Contributed Notes

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