मैं इस पाश में प्रदर्शित करने के लिए सभी बच्चों की श्रेणियां प्राप्त करने की कोशिश कर रहा हूं, लेकिन मैं कोड के साथ संघर्ष कर रहा हूं। अभी तक मेरे पास इतना ही है।
<?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 } ?>
कोई भी मदद बहुत अच्छी रहेगी