Pomoc - Szukaj - Użytkownicy - Kalendarz
Pełna wersja: (WP)Problem z pętlą
Forum PHP.pl > Forum > PHP
WujekWladek
Witam
Mam problem z wyświetlaniem postów z tylko jednej kategorii.
A pokazują się posty z innych kategorii.
Kategoria ma id 2.
Strona jest na wordpress
  1. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  2. <?php if ( is_category( "2" ) ) : ?>
  3. <div class="post-cat-three">
  4. <?php else : ?>
  5. <div class="post">
  6. <?php endif; ?>
  7. <!-- Display the Title as a link to the Post's permalink. -->
  8. <h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  9. <!-- Display the date (November 16th, 2009 format) and a link to other posts by this posts author. -->
  10. <small><?php the_time('F jS, Y'); ?> by <?php the_author_posts_link(); ?></small>
  11. <!-- Display the Post's content in a div box. -->
  12. <div class="entry">
  13. <?php the_content(); ?>
  14. </div>
  15. <!-- Display a comma separated list of the Post's Categories. -->
  16. <p class="postmetadata"><?php _e( 'Posted in' ); ?> <?php the_category( ', ' ); ?></p>
  17. </div> <!-- closes the first div box -->
  18. <!-- Stop The Loop (but note the "else:" - see next line). -->
  19. <?php endwhile; else : ?>
  20. <!-- The very first "if" tested to see if there were any Posts to -->
  21. <!-- display. This "else" part tells what do if there weren't any. -->
  22. <p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
  23. <!-- REALLY stop The Loop. -->
  24. <?php endif; ?>


Pomoże ktoś ? worriedsmiley.gif worriedsmiley.gif
Malukaz
a masz wogole posty w kategorii 2 ?

pokaż co zwraca:

var_dump(have_posts());
WujekWladek
D:\yf\motyw\wp-content\themes\daniela\index.php:49:boolean true
WujekWladek
D:\yf\motyw\wp-content\themes\daniela\index.php:49:boolean true
Malukaz
magiczne funkcje wordpressowe omg...

co mowi dokumentacja wp o funkcji is_category( "2" ) ?

i powtarzam skad wiesz ze masz posty w kategorii 2 wogole ?
WujekWladek
Mam 6 wpisów w tej kategorii.
I kilka bez kategorii.
To jest wersja lo-fi głównej zawartości. Aby zobaczyć pełną wersję z większą zawartością, obrazkami i formatowaniem proszę kliknij tutaj.
Invision Power Board © 2001-2025 Invision Power Services, Inc.