Sidebardaki Recent Articles resim göstermek istiyorum
2
●475
- 17-03-2010, 17:01:22http://www.wpuzmani.com/yazidaki-ilk...ada-gostermek/
burdaki gibi yapabilirsiniz.recent articles olan kodda titlenn altına şu kodu <img src="<?php echo resimgoster() ?>" width="85" height="85" /> eklersiniz resimler çıkar resim boyutunu istediğiniz gibi değişebilirsiniz. - 18-03-2010, 09:50:03Üyeliği durdurulduhocam dediğinizi yaptım ama normal tek başına bir resim çıktı oysa benim istediğim sidebardaki son yazılanların başında sol tarafında küçük resim görünmesini istiyordum mevcut kodu yolluyorum siseharew1 adlı üyeden alıntı: mesajı görüntüle
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar 1') ) : ?>
<h2>En Son Haberler</h2>
<?php
$myposts = get_posts('numberposts=5');
foreach($myposts as $post) : setup_postdata($post);
?>
<div class="post">
<h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<div class="postmetadata"><?php the_time('d F Y') ?> @ <?php the_category(', ') ?></div>
<div class="entry">
<?php the_excerpt(); ?>
</div>
</div>
<?php endforeach; ?>
<?php endif; ?>
</div><!-- end #l-sidebar -->