Tagged Questions
0
votes
1answer
24 views
Get only X number of categories
How can i get only x number of categories using the_category. I triesd a few thing but none worked. I dont want to use get_the_category
-1
votes
1answer
28 views
How to display my categories in a list (to a post, not the sidebar)?
i want to display my categories to a post like a list. i have this (parent- and child-) categories:
- Sports
- Football
- Basketball
- Toys
- Dolls
- Lego
- Books
for example one ...
0
votes
1answer
139 views
Using wp_list_categories like the the_category (showing just current categories of a post)
fromi'm using wp_list_categories to get an unordered list with headlines (on single.php inside the post-loop):
<ul><?php wp_list_categories('title_li=0');?></ul>
the thing is: i ...
0
votes
1answer
637 views
get_the_category listing in hierarchial order
Hello at the moment I'm wondering how I would be able to make this work to post in Hierarchical order within the post loop.
<?php
foreach ((get_the_category()) as $childcat)
{
...
