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



_truncate_post_slug › WordPress Function

Seit3.6.0
Veraltetn/v
_truncate_post_slug ( $slug, $length = 200 )
Zugriff:
  • private
Parameter: (2)
  • (string) $slug The slug to truncate.
    Erforderlich: Ja
  • (int) $length Optional. Max length of the slug. Default 200 (characters).
    Erforderlich: Nein
    Standard: 200
Siehe:
Gibt zurück:
  • (string) The truncated slug.
Definiert in:
Codex:

Truncates a post slug.



Quellcode

function _truncate_post_slug( $slug, $length = 200 ) {
	if ( strlen( $slug ) > $length ) {
		$decoded_slug = urldecode( $slug );
		if ( $decoded_slug === $slug ) {
			$slug = substr( $slug, 0, $length );
		} else {
			$slug = utf8_uri_encode( $decoded_slug, $length, true );
		}
	}

	return rtrim( $slug, '-' );
}