Display horizontal list of all categories
-
As part of the theme I am using, at the end of each post it displays a list of the categories that have been applyed to the post.
I would also like to display a list of all the categories (not just the ones for that post) used by the site.
I have tried using <?php wp_list_cats(‘arguments’); ?> but it has printed them in a vertical list.
You can see it here on this post:
https://electriccoolbox.org.uk/campingaz-powerbox-36-litre-electric-cool-box/
This is the code, the first two work as I want but the third does not:
<p class=”postmetadata”><?php if (function_exists(‘the_tags’)) { the_tags(‘View all items from ‘, ‘, ‘, ‘ ‘); } ?> | View all <?php the_category(‘, ‘) ?> | View all <?php wp_list_cats(‘arguments’); ?></p>Any ideas?
Thanks.
- The topic ‘Display horizontal list of all categories’ is closed to new replies.