WP-PostViews en çok okunanlar?
2
●2.319
- 23-02-2013, 02:50:44kodu bulmuşsun bulamayanlar ; "?v_sortby=views" bunu nette ararsa bulurlar.Oferta adlı üyeden alıntı: mesajı görüntüle
ayarlar - postviews - "%VIEW_COUNT% views" ve <li><a href="%POST_URL%" title="%POST_TITLE%">%POST_TITLE%</a> - %VIEW_COUNT% views</li>" yazılarındaki viewsi sil. - 23-02-2013, 03:37:29Üyeliği durduruldueyvallah usta. diğer arkadaşlar için kodları paylaşalım.
<h1>En Yorumlananlar</h1> <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> </li> <?php } } ?> </ul>
<h1>En çok okunanlar</h1> <ul> <?php if (function_exists('get_most_viewed')): ?> <ul> <?php get_most_viewed(); ?> </ul> <?php endif; ?>