https://self-education.online
На сайте не получается реализовать иерархию страниц в хлебных крошках. Подскажите в чем может быть проблема?
На главной осуществляется вывод страниц по средствам такого кода
<?php query_posts(array('showposts' => 10, 'post_type' => 'page')); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<? the_permalink() ?>" class="main_card">
<div class="main_card__left main_card__side" id="scroll">
<div class="main_card__text" id="scroll">
<h2><? the_title();?></h2>
<span><? the_content();?></span>
</div>
</div>
<div class="main_card__right main_card__side"><? the_post_thumbnail() ?></div>
</a>
<?php endwhile;?>
<?php wp_reset_query(); ?>
Статьи выводятся так
<?php if( have_posts() )
query_posts('cat=0');
while( have_posts() ){ the_post(); ?>
<a href="<? the_permalink() ?>" class="categor_item">
<? the_post_thumbnail() ?>
<h3 class="en_name video__name">
<? the_title();?>
</h3>
<h3 class="rus_name video__name"><?php echo (get_post_meta($post->ID, 'h2', true)); ?></h3>
</a>
<?php }
?>