Anasayfa » Anlatım, Wordpress, İpucu

Wordpress’de En Çok Yorumlanan Yazılar

26 Mart 2009 1 Yorum

wordpressWordpress’de en çok yorumlanan yazıları göstermek için, Wp Most Commented (En Çok Yorumlananlar) Eklentisini kullanıyorduk. Ancak şimdi göstereceğim yöntemle, bu eklentiye ihtiyacınız kalmıyor ve ufak bir kod yardımıyla sitenizin en çok yorum alan yazılarını gösterebiliyorsunuz.


<h2>Çok Yorumlanan Yazılar</h2>
<ul>
< ?php $result = $wpdb->get_results("SELECT comment_count,ID,post_title FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 5");
foreach ($result as $post) {
setup_postdata($post);
$postid = $post->ID;
$title = $post->post_title;
$commentcount = $post->comment_count;
if ($commentcount != 0) { ?>
<li><a href="<?php echo get_permalink($postid); ?>" title="< ?php echo $title ?>">
< ?php echo $title ?></a> {< ?php echo $commentcount ?>}</li>
< ?php } } ?>
</ul>

Evet arkadaşlar bu kodcuğu, sitenizde en çok yorum alan yazılarınızın görüntülemek istediğiniz yere yapıştırıyorsunuz. İşlem tamam :=)

Sorusu olan? =)


Etiketler: , , , , , , ,

One Response to “Wordpress’de En Çok Yorumlanan Yazılar”

  1. 1
    SPEEPSIVY Says:

    well.. it’s like I said!

Leave a Reply