arkadaşlar anasayfada son yazılan yazıların görünmesi yerine kategori kategori thumb resimleriyle birlikte son 5 yazının görüntülenmesini istiyorum böyle bir eklenti varmı yoksa kendimizmi yapmamız gerekiyor.
yardımlarınız için tşk.
anasayfada kategori ve kategorilerin son yazılan yazılarını gösterme
5
●372
- 02-01-2013, 17:26:44
<?php // this is where the Features module begins query_posts('showposts=1&cat=1'); //change the showposts number to the number of posts that you want to appear, and change cat=199 to your category number, which you can find out by going to Manage > Categories ?> <?php while (have_posts()) : the_post(); ?> <div class="thumbnails"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><img src="<?php echo get_option('home'); ?>/wp-content/themes/themefolder/images/<?php // this is where the custom field prints images for each Feature $values = get_post_custom_values("Image"); echo $values[0]; ?>" alt="" /></a> <p class="title"><a href="<?php the_permalink() ?>" rel="bookmark"> <?php // this is where title of the Feature gets printed the_title(); ?></a></p></div> <?php endwhile; ?>kullanmanız gereken kodlar bunlar showposts=1&cat=1 bölümlerini kendinize göre ayarlayın, diğer bölümleri açıklaması da yazıyor. kolay gelsin