I'm setting up a website and putting the breadcrumb straight into the code, but I'm not able to get the parent item from the dropdown menu, it's getting the code ... how can I pull the parent item?
<section class="continer-fluid indice">
<div class="container">
<div class="row">
<ol class="breadcrumb">
<li>Página Inicial</li>
<li>item mãe</li>
<li class="active"><?php the_title(); ?> <?php the_subtitle(); ?></li>
</ol>
</div>
</div>
</section>