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



wp_is_internal_link › WordPress Function

Seit6.2.0
Veraltetn/v
wp_is_internal_link ( $link )
Parameter:
  • (string) $link The URL to test.
    Erforderlich: Ja
Siehe:
Gibt zurück:
  • (bool) Returns true for internal URLs and false for all other URLs.
Definiert in:
Codex:

Determines whether or not the specified URL is of a host included in the internal hosts list.



Quellcode

function wp_is_internal_link( $link ) {
	$link = strtolower( $link );
	if ( in_array( wp_parse_url( $link, PHP_URL_SCHEME ), wp_allowed_protocols(), true ) ) {
		return in_array( wp_parse_url( $link, PHP_URL_HOST ), wp_internal_hosts(), true );
	}
	return false;
}