How to make different categories parent and child categories
-
Hi
I make a website like the one shown above….
This is my website https://imfareed.com/personal/v-clone/…..
When i click to any particular category like “breakfast and others” it gives the list of relevent hotles…
This file is running dining.php and
this is my code…..
<div class=”row”>
<h3 class=”col-lg-12 text-center margins-top-bot”>
Select a Category</h3>
<?php $dining = new WP_Query(array(
‘post_type’ => ‘dining’,
‘order’ =>’ASC’
));?><?php while($dining->have_posts()) : $dining->the_post(); ?>
<div class=”col-lg-2 col-sm-4 ful-size-pic”>
“>
<?php the_post_thumbnail();?>
<p><?php the_title();?></p></div><!– col-lg-2-end –>
<?php endwhile;?>
</div><!– Row-End –>I have made one category but still it is not showing….
kindly advise whether a seperate code will be required for it in single-dining.php
- The topic ‘How to make different categories parent and child categories’ is closed to new replies.