Ho creato alcune tassonomie personalizzate e ho bisogno di mostrare TUTTI i termini da essa, ciò che ho raggiunto finora è mostrare le tassonomie che sono selezionate / scelte in un tipo di post personalizzato ma ho bisogno di mostrarle tutte, sia che siano selezionate o meno . In modo che successivamente possa creare un filtro che filtra in base a quali termini contiene un valore di tipo di post personalizzato.
<?php
$args=array(
'public' => true,
'_builtin' => false
);
$output = 'names'; // or objects
$operator = 'and';
$taxonomies=get_taxonomies($args,$output,$operator);
if ($taxonomies) {
foreach ($taxonomies as $taxonomy ) {
$terms = get_terms($taxonomy);
foreach ( $terms as $term) {
?>
<li><br><a href="#"><input type="checkbox" name="profile[]" value=""><?php echo $term->name; ?> <br/></a></li>
<?php
}
}
}
?>
Quello che ho finora.
Grazie in anticipo!