wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_is_internal_link › WordPress Function

Od6.2.0
Przestarzałyn/a
wp_is_internal_link ( $link )
Parametry:
  • (string) $link The URL to test.
    Wymagane: Tak
Zobacz:
Powrót:
  • (bool) Returns true for internal URLs and false for all other URLs.
Zdefiniowane na:
Codex:

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



Źródło

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;
}