WordPress Popüler Yazılarınızı Eklentisiz Ekleyelim

Tarih : 13 / Kasım / 2014   -   Kategori :    -   Yorum Yok   Paylaş

olcay_wordpress
Wordpress en çok okunan veya yorumlanan yazılarınızı yorum sayısına göre listeyebilir isterseniz sidebar’da kullanabilirsiniz.

Aşağıki kodu görmek istediğiniz yere yerleştirin ve wordpress popüler yazılarınız listelensin.

<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>