Validate::sanitize_esc_url( null|string $value = null )

Description #

Sanitize field value and return sanitized url.

Parameters #

  • $value
    null | string (Optional) String to sanitize. Default value: null

Source #

File: lib/class-validate.php

	public static function sanitize_esc_url( $value = null ) {
		if ( ! empty( $value ) ) {
			return esc_url( $value );
		}
	}

Leave a Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Add your comment