Display taxonomies in stylish publications

0

I am trying to visualize in a publication the result of a chosen taxonomy, but I am stuck:

<? php the_terms ($ post-> ID, 'localidad', 'Localidades:', '/ '); ?>

But they appear one below the other and I wish that I appear on the same line. and I can not think of where I can indicate that ** Locations: ** is in bold.

can you help me? Thanks !!

    
asked by Jennifer 16.10.2018 в 02:10
source

1 answer

0

the_terms will show you the taxonomies as links (tags that by default are inline), if one is shown below another is or because the container of those links needs to be wider or because some CSS is modifying the labels to be display: block;

The third parameter supports HTML, so you can put '<b>Localidades:</b>'

    
answered by 17.10.2018 / 04:15
source