• 13-10-2013, 15:36:43
    #1
    Arkadaslar sidebarda son yazilar mevcut ancak son yazilarda

    -sadece belirledigim kategorilerin yazilari gozuksun-
    veya
    -istemedigim kategorilerin yazilari gozukmesin-

    nasil yaparim, yardimlariniza ihtiyacim var...
  • 13-10-2013, 15:43:07
    #2
    PHP - WORDPRESS - YAZILIM
    https://www.google.com.tr/#q=wordpre...+g%C3%B6sterme

    burdan bulabilirsiniz hocam
  • 13-10-2013, 15:44:28
    #3
    <?php if (have_posts()) : ?>
    <?php $recent = new WP_Query("cat=5,4,12,51&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
    <ul>
    <li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
    </ul>
    <?php endwhile; ?>
    <?php else: ?>
    <?php endif; ?>
    </div>

    cat=5,4,12,51 bu şekilde yazarsanız istediğiniz kategorilerden son yazıları çeker.
  • 13-10-2013, 16:13:25
    #4
    Cok tesekkurler asagidaki kodla sorunumu cozdum .

    <?php $recent = new WP_Query("cat=5,4,12,51&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
  • 14-10-2013, 18:05:09
    #5
    şurada ufak bir revize yapın derim ;

    new WP_Query("cat=5,4,12,51&showposts=10");

    yerine

    new WP_Query("cat=5,4,12,51&posts_per_page=10");
    kullanmanız daha sağlıklı olacaktır.
  • 14-10-2013, 19:32:45
    #6
    Üyeliği durduruldu
    Arkadaşlar farklı bir soru soracağım.
    Ana sayfa da izlenen videoları nasıl gösteririm.
    Veya sayfa yenilendikçe farklı videolar nasıl gösteririm.