2016-05-11 16 views

Antwort

0

Vielen Dank an alle für die Beantwortung. Ich löste es wie folgt aus:

$args = array(
    'orderby' => 'name', 
    'taxonomy'=>'product_category', 
    'parent' => 0 
); 
$categories = get_categories($args); 
foreach ($categories as $category) { 
    echo '<li><a href="' . get_category_link($category->term_id) . '">' . $category->name . '</a></li>'; 
} 

Mai anderen helfen.

Verwandte Themen