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



_wp_filter_taxonomy_base › WordPress Function

Seit2.6.0
Veraltetn/v
_wp_filter_taxonomy_base ( $base )
Zugriff:
  • private
Parameter:
  • (string) $base The taxonomy base that we're going to filter
    Erforderlich: Ja
Gibt zurück:
  • (string)
Definiert in:
Codex:

Filters the URL base for taxonomies.

To remove any manually prepended /index.php/.


Quellcode

function _wp_filter_taxonomy_base( $base ) {
	if ( ! empty( $base ) ) {
		$base = preg_replace( '|^/index\.php/|', '', $base );
		$base = trim( $base, '/' );
	}
	return $base;
}