wc_sanitize_taxonomy_name( string $taxonomy )

Sanitize taxonomy names. Slug format (no spaces, lowercase).


Description Description

Urldecode is used to reverse munging of UTF8 characters.


Parameters Parameters

$taxonomy

(Required) Taxonomy name.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/wc-formatting-functions.php

function wc_sanitize_taxonomy_name( $taxonomy ) {
	return apply_filters( 'sanitize_taxonomy_name', urldecode( sanitize_title( urldecode( $taxonomy ) ) ), $taxonomy );
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.