The wp-list-categories tag has no wiki summary.
0
votes
2answers
85 views
Categorie parents and childs displayed
I'm trying to create a menu directly hard-coded, basically I need to display the parent category and below its child categories, however I have to do this several times meaning something like this:
...
-1
votes
2answers
420 views
Differentiate Between Parent & Child Categories
So I'm working with a non-wordpress theme called "Misty" and it uses this code to pull categories:
<li class="sidebox">
<h3><?php _e('Categories','ml'); ?></h3>
<ul ...
1
vote
1answer
221 views
List Sub-Categories of a Parent Category
I need to be able to list categories that are the sub-category of a specific category that is a sub-category of a primary category.
So something like this:
Print Categories where ParentCategory = ...
0
votes
1answer
58 views
Not showing list if there aren't any categories to display
maybe you can help:
Bellow there is a simple code listing my blogs categories.
I need some code that will not display the *ul is there aren't any categories to display*
<ul>
...
0
votes
1answer
606 views
How to divide and display categories into two columns
I am using custom taxonomies. I have multiple categories and each category has multiple children. I would like to display the categories in two columns on my homepage similar to linkcentre.com.
I ...
0
votes
1answer
410 views
get_category_link() is returning nothing
<?php
$categories=get_categories('taxonomy=galeriak');
foreach ($categories as $category) {
?>
<li><a href="<?php echo get_category_link( $category->term_id ) ?>" ...
0
votes
2answers
218 views
Wordpress Categories: Function using custom SQL to return array of specific category IDs
I'm developing a custom theme which uses categories for positioning, all of which begin with an underscore (e.g. _position1). I have an SQL query as below to get a list of these categories (those ...
1
vote
1answer
210 views
How do I reset this wp_list_categories query?
How do I reset a query that generates a list of categories with wp_list_categories?
The query below builds a two column list of categories that is then displayed with the second code chunk.
I'm ...