¿Mostrar todos los términos de una taxonomía personalizada?
-
-
¿En quémomentoestofalla?¿Cuántofunciona de lamanera que legustaría?At what point does this fail? How much of it works the way you'd like?
- 0
- 2014-03-04
- s_ha_dum
-
Funciona,elproblemaes que solopuedomostrar lostérminos SELECCIONADOSen untipo depublicaciónpersonalizada.Quiero quetodosmuestren siestán seleccionados ono,no quierotener untipo depublicaciónficticia quetengatodo seleccionado soloparamostrarlos.It works the issue is that I can only show the SELECTED terms in a custom post type. I want all of them to show wether selected or not, I don't want to have a dummy post type that has everything selected just to show them.
- 0
- 2014-03-04
- David H
-
3 respuestas
- votos
-
- 2014-03-04
Debepasar un argumento adicional a
get_terms()
.El valorpredeterminadoes ocultar lostérminos "vacíos",términos queno se asignan aningunapublicación.$terms = get_terms([ 'taxonomy' => $taxonomy, 'hide_empty' => false, ]);
You need to pass an additional argument to
get_terms()
. The default is to hide "empty" terms-- terms which are assigned to no posts.$terms = get_terms([ 'taxonomy' => $taxonomy, 'hide_empty' => false, ]);
-
Muchasgracias!Pero quieropreguntar algo,¿por qué crearía unamatriz dentro de una variableen lugar de declararla arriba donde semuestra laprimeramatriz?Thank you so much! But I want to ask something, why would you create an array inside a variable instead of declaring it above where the first array is shown?
- 0
- 2014-03-04
- David H
-
Sencillez.Si lamatriz de argumentosfueramás compleja,la habría declaradoprimero (lomásprobable),peropara un solo argumento,esaes laformamás sencilla de hacerlo.Deberíafuncionarigualmentebien de cualquiermanera.Simplicity. If the argument array were more complex I would have declared it first (most likely), but for a single argument that is just the most straightforward way to do it. It should work equally well either way.
- 0
- 2014-03-04
- s_ha_dum
-
Muchasgracias :) queme pensómucho.¡Realmente lo aprecio!Thanks a lot :) that thought me a lot. I really appreciate it!
- 0
- 2014-03-04
- David H
-
¡¡Trabajos!!¡Ahorapuedo ver quéestápasando contodas las opciones detaxonomía!Algunos complementos crean unaestructura compleja allí.Works!! Now I can see what's going on with all the taxonomy options! Some plugins create complex structure in there.
- 0
- 2018-06-22
- eyal_katz
-
- 2017-07-21
Desde 4.5.0,lastaxonomías debenpasarse através del argumento "taxonomía"en lamatriz $ args así:
$terms = get_terms( array( 'taxonomy' => 'post_tag', 'hide_empty' => false, ) );
donde lostérminos quenotienen publicacionesestán ocultos deformapredeterminada.
Since 4.5.0, taxonomies should be passed via the ‘taxonomy’ argument in the $args array so:
$terms = get_terms( array( 'taxonomy' => 'post_tag', 'hide_empty' => false, ) );
where terms that have no posts are hidden by default.
-
- 2017-02-14
Este código recuperatodas lastaxonomíaspersonalizadas de categorías y subcategoríasmediante
get_terms()
:<?php $wcatTerms = get_terms('product_cat', array('hide_empty' => 0, 'parent' =>0)); foreach($wcatTerms as $wcatTerm) : ?> <ul> <li> <a href="<?php echo get_term_link( $wcatTerm->slug, $wcatTerm->taxonomy ); ?>"><?php echo $wcatTerm->name; ?></a> <ul class="megaSubCat"> <?php $wsubargs = array( 'hierarchical' => 1, 'show_option_none' => '', 'hide_empty' => 0, 'parent' => $wcatTerm->term_id, 'taxonomy' => 'product_cat' ); $wsubcats = get_categories($wsubargs); foreach ($wsubcats as $wsc): ?> <li><a href="<?php echo get_term_link( $wsc->slug, $wsc->taxonomy );?>"><?php echo $wsc->name;?></a></li> <?php endforeach; ?> </ul> </li> </ul> <?php endforeach; ?>
This code is fetches all category and subcategory custom taxonomies using
get_terms()
:<?php $wcatTerms = get_terms('product_cat', array('hide_empty' => 0, 'parent' =>0)); foreach($wcatTerms as $wcatTerm) : ?> <ul> <li> <a href="<?php echo get_term_link( $wcatTerm->slug, $wcatTerm->taxonomy ); ?>"><?php echo $wcatTerm->name; ?></a> <ul class="megaSubCat"> <?php $wsubargs = array( 'hierarchical' => 1, 'show_option_none' => '', 'hide_empty' => 0, 'parent' => $wcatTerm->term_id, 'taxonomy' => 'product_cat' ); $wsubcats = get_categories($wsubargs); foreach ($wsubcats as $wsc): ?> <li><a href="<?php echo get_term_link( $wsc->slug, $wsc->taxonomy );?>"><?php echo $wsc->name;?></a></li> <?php endforeach; ?> </ul> </li> </ul> <?php endforeach; ?>
Hice algunastaxonomíaspersonalizadas ynecesitomostrar TODOS lostérminos,lo que logré hasta ahoraesmostrar lastaxonomías que se seleccionan/eligenen untipo depublicaciónpersonalizada,peronecesito que semuestrentodas,ya sea seleccionado ono. Para que luegopueda hacer unfiltro quefiltre según lostérminos que contiene un valor detipo depublicaciónpersonalizada.
Lo quetengo hasta ahora.
¡Gracias de antemano!