আমি এই লুপটিতে সমস্ত বাচ্চাদের বিভাগ প্রদর্শন করার চেষ্টা করছি তবে আমি কোডটির সাথে লড়াই করছি। আমার এখন পর্যন্ত যা আছে তাই এটি।
<?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 } ?>
যেকোনো সাহায্যই অসাধারণ