Hello! I install my layout on wordpress - and now there is such a question, how to bring posts to the main and in the category? I tried this:
<?php if((is_category()) and (is_front_page())) { ?> <div class="sekret"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h2 class="sekret-number"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <h2 class="data"><a href="<?php the_permalink(); ?>"><?php the_time('F jS, Y'); ?></a></h2> <h2 class="sekret-tag"><?php the_category(', '); ?></h2> <div class="content"> <?php the_content(); ?> </div> <div class="foot"></div> <?php endwhile; else: ?> <p>Sorry, no posts matched your criteria.</p> <?php endif; ?> </div> </div> <?php } ?> But posts are not displayed at all. Can you please tell me what I did wrong?