wc_sanitize_taxonomy_name()
Sanitize taxonomy names. Slug format (no spaces, lowercase). Urldecode is used to reverse munging of UTF8 characters.
Hooks from the function
Return
String
.
Usage
wc_sanitize_taxonomy_name( $taxonomy );
- $taxonomy(string) (required)
- Taxonomy name.
wc_sanitize_taxonomy_name() wc sanitize taxonomy name code WC 9.8.1
function wc_sanitize_taxonomy_name( $taxonomy ) { return apply_filters( 'sanitize_taxonomy_name', urldecode( sanitize_title( urldecode( $taxonomy ?? '' ) ) ), $taxonomy ); }