• 23-07-2009, 04:02:34
    #1
    Nasıl bir başlık atacağımı bile bilemedim kusura bakmayın

    Temamdaki bir kodlama şu şekilde;
        <div id="featured">
        <h2>Hede Hödö</h2>
        <div class="wrapper">
        <?php
        $tmp_query = $wp_query;
        query_posts('showposts=5&cat=' . get_cat_ID(dp_settings('featured')));
        if (have_posts()) :
        while (have_posts()) : the_post(); 
        ?>
        <div class="featured">
    Kod bu haliyle çalışıyor sorun yok

    Ancak koddaki cat= bölümüne cat=4 şeklinde kategori Id sini veriyorum çalışmıyor. Ben sadece 4 numaralı kategorinin yazılarını göstermek istiyorum.

    Sorun ne olabilir ?
  • 23-07-2009, 04:05:04
    #2
    hatalı ekleme yapıyor olabilirsiniz?
      <div id="featured">
        <h2>Hede Hödö</h2>
        <div class="wrapper">
        <?php
        $tmp_query = $wp_query;
        query_posts('showposts=5&cat=4');
        if (have_posts()) :
        while (have_posts()) : the_post(); 
        ?>
        <div class="featured">
    bir de böyle deneyin.
  • 23-07-2009, 04:12:29
    #3
    Teşekkürler semih Her sorunuma hızır gibi yetişiyosun teşekkürler.