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



url_shorten › WordPress Function

Seit1.2.0
Veraltetn/v
url_shorten ( $url, $length = 35 )
Parameter: (2)
  • (string) $url URL to shorten.
    Erforderlich: Ja
  • (int) $length Optional. Maximum length of the shortened URL. Default 35 characters.
    Erforderlich: Nein
    Standard: 35
Gibt zurück:
  • (string) Shortened URL.
Definiert in:
Codex:
Changelog:
  • 4.4.0

Shortens a URL, to be used as link text.



Quellcode

function url_shorten( $url, $length = 35 ) {
	$stripped  = str_replace( array( 'https://', 'http://', 'www.' ), '', $url );
	$short_url = untrailingslashit( $stripped );

	if ( strlen( $short_url ) > $length ) {
		$short_url = substr( $short_url, 0, $length - 3 ) . '…';
	}
	return $short_url;
}