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



wp_make_link_relative › WordPress Function

Seit2.1.0
Veraltetn/v
wp_make_link_relative ( $link )
Parameter:
  • (string) $link Full URL path.
    Erforderlich: Ja
Gibt zurück:
  • (string) Absolute path.
Definiert in:
Codex:
Changelog:
  • 4.1.0

Converts full URL paths to absolute paths.

Removes the http or https protocols and the domain. Keeps the path '/' at the beginning, so it isn't a true relative link, but from the web root base.


Quellcode

function wp_make_link_relative( $link ) {
	return preg_replace( '|^(https?:)?//[^/]+(/?.*)|i', '$2', $link );
}