• 22-02-2014, 01:59:02
    #1
    Merhaba,

    Web sitemde yeni bir sayfa oluşturup, istediğim kategorideki içerikleri o sayfada göstermek istiyorum. Bunu otomatik şekilde sağlayabileceğim bir eklenti mevcut mu?

    Mevcut değilse hangi adımları izlemem gerekiyor yardımcı olursanız çok sevinirim.

    Kısacası, belirli bir kategorideki yazıları, oluşturduğum (örneğin örnek çalışmalar sayfası) sayfada göstermek istiyorum.
  • 22-02-2014, 02:04:28
    #2
    PHP - WORDPRESS - YAZILIM
    1.Aşama

    https://www.google.com.tr/#q=wordpre...a+%C5%9Fablonu

    2.Aşama

    <?php if (have_posts()) : ?> 
    <?php $metinnnron = new WP_Query("cat='kategori-id'&showposts=konu-sayısı"); while($metinnnron->have_posts()) : $metinnnron->the_post();?>
    <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
    <?php endwhile; ?> 
    <?php endif; ?>
  • 22-02-2014, 02:44:18
    #3
    metin_nn adlı üyeden alıntı: mesajı görüntüle
    1.Aşama

    https://www.google.com.tr/#q=wordpre...a+%C5%9Fablonu

    2.Aşama

    <?php if (have_posts()) : ?> 
    <?php $metinnnron = new WP_Query("cat='kategori-id'&showposts=konu-sayısı"); while($metinnnron->have_posts()) : $metinnnron->the_post();?>
    <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
    <?php endwhile; ?> 
    <?php endif; ?>
    Teşekkür ettim inceliyorum.