wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



esc_url_raw › WordPress Function

Seit2.8.0
Veraltetn/v
esc_url_raw ( $url, $protocols = null )
Parameter: (2)
  • (string) $url The URL to be cleaned.
    Erforderlich: Ja
  • (string[]) $protocols Optional. An array of acceptable protocols. Defaults to return value of wp_allowed_protocols().
    Erforderlich: Nein
    Standard: null
Siehe:
Gibt zurück:
  • (string) The cleaned URL after sanitize_url() is run.
Definiert in:
Codex:
Changelog:
  • 6.1.0

Sanitizes a URL for database or redirect usage.

This function is an alias for sanitize_url().


Ähnliche Funktionen: esc_url, rest_url, esc_html__, esc_html_e, esc_html_x

Quellcode

function esc_url_raw( $url, $protocols = null ) {
	return sanitize_url( $url, $protocols );
}