Determines whether a term is publicly viewable.
Description
A term is considered publicly viewable if its taxonomy is viewable.
Parameters
$term
int|WP_Termrequired- Term ID or term object.
Source
function is_term_publicly_viewable( $term ) {
$term = get_term( $term );
if ( ! $term ) {
return false;
}
return is_taxonomy_viewable( $term->taxonomy );
}
Changelog
Version | Description |
---|---|
6.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.