Wordpress help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • The Duck
    Adult Content Provider
    • May 2005
    • 18243

    #1

    Wordpress help

    Instead of showing the latest posts on the frontpage, is there any way to make it show random posts? Tried tinkering with it but couldnt find a good setting.
    Skype Horusmaia
    ICQ 41555245
    Email [email protected]
  • Andiz
    Confirmed User
    • Feb 2006
    • 2594

    #2
    Try this out on your index.php file

    <?php
    global $wpdb;
    $numposts = 10;

    $rand_posts = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY RAND() LIMIT $numposts");
    foreach($rand_posts as $post) :
    setup_postdata($post);
    ?>

    Template tags and what not go here

    <?php endforeach; ?>
    Just change the value of $numposts to define how many posts to query for.

    Comment

    • RawAlex
      So Fucking Banned
      • Oct 2003
      • 9465

      #3
      heh-heh... just don't use the wordpress support board, I got called a skank over there because my sites have "teen porn" on them.

      Must be the same fuckers that check the google ads.

      Comment

      • The Duck
        Adult Content Provider
        • May 2005
        • 18243

        #4
        Originally posted by Andiz
        Try this out on your index.php file


        Just change the value of $numposts to define how many posts to query for.
        Thanks man!
        Skype Horusmaia
        ICQ 41555245
        Email [email protected]

        Comment

        Working...