• 02-01-2013, 13:52:55
    #1
    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.
  • 02-01-2013, 15:55:26
    #2
    Wordpress codexleri inceleyerek php bilginiz varsa rahatça yapabilirsiniz.
  • 02-01-2013, 17:26:44
    #3
    Developer
    <?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
  • 02-01-2013, 20:07:00
    #4
    yardımcı olan olmak isteyen arkadaşlara teşekkür ederim fakat demek istediğim resimdeki gibi birşey

  • 02-01-2013, 20:39:05
    #5
    Developer
    bahsettiğiniz şey ile ilgili yapıyı yazdım size zaten, sadece farkı onda solda 1. postu ayırıp fotoğraf yapmış. benim verdiğimde şuan hepsinde fotoğraf çıkıyor. kendinize göre düzenleyebilirseniz güzel birşey ortaya çıkar.
  • 07-01-2013, 10:46:32
    #6
    arkadaşlar bahsettiğim örnekteki gibi bi kodlamaya ihtiyacım var yardımcı olabilecek varmı tasarımını ben yaparım sadece kodlamada yardımcı olabilecek?