Estou tentando fazer com que todas as categorias filho sejam exibidas nesse loop, mas estou tendo problemas com o código. É isso que eu tenho até agora.
<?php $args=array('orderby' => 'name', 'order' => 'ASC');
$categories=get_categories($args);
foreach ($categories as $cat) { ?>
<dt><a href="#" class="customer-acquisitiontop" id="<?php echo $cat->slug; ?>" data-filter=".<?php echo $cat->slug; ?>"><h2><?= $cat->cat_name; ?></h2></a></dt>
<dd><div class="services">
<?= $categories=get_categories('parent'); ?> /*This should be the children of the parent category */
</div>
</dd>
<?php } ?>
Qualquer ajuda seria ótimo
fonte
Use o código abaixo no seu arquivo archive.php. Este código irá ajudá-lo a:
fonte
Se não houver valores na matriz, você pode tentar a seguinte abordagem:
fonte