banner ad

wordpress Random post display | WordPress Devlopment | Forum

You must be logged in to post Login Register


Lost Your Password?

Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

wordpress Random post display

UserPost

4:06 pm
September 30, 2011


anki

Admin

posts 14

did any one done ,

how to display the random post with out using plugin?

4:09 pm
September 30, 2011


anki

Admin

posts 14

I done with this,

simple sql query can resolve this issue,

 

<!– Popular Starts Post –>
<div style="clear: both; list-style: none outside none;">
<?php

$popular_posts = $wpdb->get_results("SELECT id, post_title FROM  {$wpdb->prefix}posts WHERE post_type = 'post' ORDER BY  RAND() LIMIT 0,10");

 foreach($popular_posts as $post) {
 print "<li><a href='". get_permalink($post->id) ."'>".$post->post_title."</a></li>n";
 }
?>
</div>
<!– Popular Post End Here –>


About the CodeHelper.in forum

Forum Timezone: Africa/Abidjan

Most Users Ever Online: 14

Currently Online:
6 Guests

Currently Browsing this Topic:
1 Guest

Forum Stats:

Groups: 1
Forums: 9
Topics: 14
Posts: 18

Membership:

There are 82 Members

There is 1 Admin

Top Posters:

khasim – 2
vsreddy – 1
codehelper – 1

Recent New Members: gina123, khasim, vsreddy, codehelper, cindy2012car, sree

Administrators: anki (14 Posts)



banner ad