Forums

[resolved] Random posts with thumnlais (3 posts)

  1. VAHID216
    Member
    Posted 1 year ago #

    Hello
    I want show random post with thumbnail and using this code :

    <?php
     $rand_posts = get_posts('numberposts=5&orderby=rand');
     foreach( $rand_posts as $post ) :
    
     ?>
    
    <a href="<?php the_permalink(); ?>">
            <?php the_post_thumbnail(array(150,130)); ?></a>

    But all thumb is the same and are from last post.
    And now i need to know the RIGHT code for showing thumbnails.
    Thanks

  2. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    Try using:

    <?php
    $rand_posts = get_posts('numberposts=5&orderby=rand');
    foreach( $rand_posts as $post ) :
    setup_postdata($post);
    ?>
    
    <a href="<?php the_permalink(); ?>">
    <?php the_post_thumbnail(array(150,130)); ?></a>
  3. VAHID216
    Member
    Posted 1 year ago #

    Thanks esmi its working nice.

Topic Closed

This topic has been closed to new replies.

About this Topic