I found it! When I deactivated all plugins – function worked properly and menu apeared!….
Yes, it calss get_header() function. I’ve enabled debugging but no changes. The code on category page is correct, I even made it very simple to show only posts titles, but still the same
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h1>
<?php the_title(); ?>
</h1>
</div>
<?php endwhile; ?>
<?php else : ?>
<div class=”post”>
<h2> <?php _e(‘not found’); ?> </h2>
</div>
<?php endif; ?>
Hello, i’m running it on localhost, so cant give you a link. I’m developing my own theme, not the first one. Menu is shown in any template file but not in category.php