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.
Return Return
(string)
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 ); }