• 04-02-2017, 15:47:54
    #1
    Merhaba arkadaşlar,

    <?php if ( have_posts()) : ?>
    <?php $metinsarac = new WP_Query("cat='13'&showposts=5"); while($metinsarac ->have_posts()) : $metinsarac ->the_post();?>
    <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
    <?php endwhile; ?>
    <?php endif; ?>

    Şu şekilde bir kodum var ve 13 id li kategorinin içindeki konu başlıklarını çekiyorum.

    Bunu single.php de yaptığımda tüm diğer kategorilerde de görüyorum sadece 13 idli kategoride sadece 13 kategoriye ait yazı başlıklarını çekmek istiyorum.

    Nasıl yapabiliriz?
  • 04-02-2017, 16:06:01
    #2
    css adlı üyeden alıntı: mesajı görüntüle
    Merhaba arkadaşlar,

    <?php if ( have_posts()) : ?>
    <?php $metinsarac = new WP_Query("cat='13'&showposts=5"); while($metinsarac ->have_posts()) : $metinsarac ->the_post();?>
    <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
    <?php endwhile; ?>
    <?php endif; ?>

    Şu şekilde bir kodum var ve 13 id li kategorinin içindeki konu başlıklarını çekiyorum.

    Bunu single.php de yaptığımda tüm diğer kategorilerde de görüyorum sadece 13 idli kategoride sadece 13 kategoriye ait yazı başlıklarını çekmek istiyorum.

    Nasıl yapabiliriz?
    <?php if ( have_posts() && in_category( '13' ) ) : ?>
    <?php $metinsarac = new WP_Query("cat='13'&showposts=5"); while($metinsarac ->have_posts()) : $metinsarac ->the_post();?>
    <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
    <?php endwhile; ?>
    <?php endif; ?>
    Söylediklerinizi doğru anladıysam bu şekilde yaparsanız olacaktır.
  • 04-02-2017, 16:15:41
    #3
    FSahin adlı üyeden alıntı: mesajı görüntüle
    <?php if ( have_posts() && in_category( '13' ) ) : ?>
    <?php $metinsarac = new WP_Query("cat='13'&showposts=5"); while($metinsarac ->have_posts()) : $metinsarac ->the_post();?>
    <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
    <?php endwhile; ?>
    <?php endif; ?>
    Söylediklerinizi doğru anladıysam bu şekilde yaparsanız olacaktır.
    Sağolun hocam tamda anlatmak istediğim buydu sorunu hallettim teşekkür ederim.