trying to show breadcrumbs but i am stuck.
ABOUT US
- TEAM
- WHAT WE DO
i don’t understand how to show all menus dynamically in breadcrumbs, if i am currently on what we do page then how to show in breadcrumbs kindly help me
i try this
<?php $menuID = $post->ID;
query_posts( 'post_type=page&post_parent=$menuID' );
while ( have_posts() ) : the_post();
the_title();
endwhile;
?>
this code just show child of every page but how can i find page which one is clicked
Place this code in
custom_functions.php:
Go to your
single.php
page and add the following code anywhere you want to display the breadcrumbs.