custom query for popular post
-
Hy.
I’ve got some problem here when trying to display posts ordered by votes.
Note : I added a column named ‘votes’ into wp_posts.here’s the code
$popular_posts = new WP_Query('orderby=votes&order=DESC'); <?php if ($popular_posts->have_posts()) : ?> <?php while ($popular_posts->have_posts()) : $popular_posts->the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="entry"> <?php the_excerpt(); ?> </div> </div> <?php endwhile; ?> <?php else : ?> <?php endif; ?>
does anyone has a suggestion? pls tell me.
thx.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘custom query for popular post’ is closed to new replies.