Es posible que haya registrado taxonomías para un tipo de entrada personalizado. Estas taxonomías se pueden mostrar en una lista desordenada en las páginas de plantilla de WordPress.
Instrucciones: Añada el siguiente código a un archivo de plantilla de su tema de WordPress en el que desee mostrar los términos de taxonomía en una lista desordenada.
<?php $terms = get_the_term_list( $post->ID, 'TAXONOMY_NAME',',',',',''); $terms = explode(',',$terms); echo '<ul>'; for($i = 0;$i<sizeof($terms);$i++){ ?> <li><? echo $terms[$i]; ?></li> <? } echo '</ul>'; ?>
Usted también puede disfrutar de la lectura sobre la miga de pan taxonomía personalizada.
thanks for the code – useful. Is there any way to display not only the terms, but the related images, in a grid?
You can actually accomplish this with far less code. get_the_term_list() allows for before and afters and wraps to be set as parameters, so you could accomplish the same thing using one line of code, e.g.:
you are right, good call Drew, Ill updated the post with the new version.