Come visualizzare le tassonomie personalizzate nei post?
3 risposta
- voti
-
- 2011-02-23
Ilmodopiù sempliceperelencarei termini dellatassonomiapersonalizzatae visualizzarli sarebbe quello di utilizzare
<?php get_the_term_list( $id, $taxonomy, $before, $sep, $after ) ?>
Adesempio,nel ciclo,lamiatassonomiapersonalizzata è l'elenco "lavori" come li
<ul><?php echo get_the_term_list( $post->ID, 'jobs', '<li class="jobs_item">', ', ', '</li>' ) ?></ul>
The easiest way to list terms of custom taxonomy and display them would be to use
<?php get_the_term_list( $id, $taxonomy, $before, $sep, $after ) ?>
For example in the loop, my custom taxonomy is 'jobs' list as li
<ul><?php echo get_the_term_list( $post->ID, 'jobs', '<li class="jobs_item">', ', ', '</li>' ) ?></ul>
-
Sono statoin grado di visualizzaregli articoliin questomodo:
- ID,'jobs','
- ','
- ','')?>
I was able to display the items this way:- ID, 'jobs', '
- ', '
- ', '' ) ?>
- 0
- 2017-01-01
- Diana
-
Bella risposta.Hoprovatomoltimodi diversimafunzionaperfettamente.Great answer. I tried loads of different ways but this work perfectly.
- 0
- 2020-01-20
- Phill Healey
-
- 2012-02-10
Nessuno del codicein questapagina hafunzionato,ma l'esempio dal sito wordpress hafunzionato:
<?php echo get_the_term_list( $post->ID, 'people', 'People: ', ', ', '' ); ?>
L'hopreso da http://codex.wordpress.org/Function_Reference/get_the_term_list
Spero che aiuti altre animeperdute che vorrebberomostrare le attualitassonomiepost :)
None of the code on this page worked, but the example from the wordpress site did:
<?php echo get_the_term_list( $post->ID, 'people', 'People: ', ', ', '' ); ?>
I got it from http://codex.wordpress.org/Function_Reference/get_the_term_list
Hope it helps other lost souls who would like to display the current post taxonomies :)
-
- 2013-09-18
Dai un'occhiata.hafunzionatoperme.ho unatassonomia denominata "negozi"e volevo visualizzare 2tassonomia daessa.
<?php $taxonomy = 'stores'; $args1=array( 'include'=> array(12,30) ); $terms = get_terms('stores',$args1 ); echo '<ul>'; foreach ($terms as $term) { //Always check if it's an error before continuing. get_term_link() can be finicky sometimes $term_link = get_term_link( $term, 'stores' ); if( is_wp_error( $term_link ) ) continue; //We successfully got a link. Print it out. echo '<li><a href="' . $term_link . '">' . $term->name . '</a></li>'; } echo '</ul>'; ?>
Check this out. it worked for me. i have a taxonomy named 'stores', and i wanted to display 2 taxonmies from it.
<?php $taxonomy = 'stores'; $args1=array( 'include'=> array(12,30) ); $terms = get_terms('stores',$args1 ); echo '<ul>'; foreach ($terms as $term) { //Always check if it's an error before continuing. get_term_link() can be finicky sometimes $term_link = get_term_link( $term, 'stores' ); if( is_wp_error( $term_link ) ) continue; //We successfully got a link. Print it out. echo '<li><a href="' . $term_link . '">' . $term->name . '</a></li>'; } echo '</ul>'; ?>
Quasituttii temi visualizzano le categorie (conil suopermalink)perimpostazionepredefinita.Sto cercando untipo di codice simile da aggiungerenelmiotema.Da doveposso ottenerlo? Per crearetassonomiepersonalizzate,utilizzoilplug-in Altretassonomie .