http://i.imagebanana.com/img/yl1q5vuc/jak.png
Jak to zrobić?
Oto moj kod:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <?php if (in_category('news')) { ?> <div class="entry"> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <p class="entry-date"><?php the_time('d-m-Y'); ?></p> <?php the_content('czytaj dalej'); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> </div> <?php } ?> <?php endwhile; else: ?> <p><BR /><?php _e('Wybacz, nie znalazłem nic, co spełniałoby Twoje kryteria wyszukiwania.<BR /><a href="index.php">Wróć!</a>'); ?><BR /></p> <?php endif; ?>