• Hi everybody.
    I want to ask for help on loops. I have 10 categories.
    On each single post (single.php) I want to loop 5 more links from same category to the sidebar. I searched alot but could not found a suloution.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Here’s a code I use in the single.php to show the thumbnails of other posts in the same category.
    Might help you started ??

    $category = get_the_category(); //get first current category ID
    	$this_post = $post->ID; // get ID of current post
    	$posts = get_posts('numberposts=500&orderby=rand&category=' . $category[0]->cat_ID . '&exclude=' . $this_post); ?>
    	    <?php foreach($posts as $post) { ?>
    	    <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
            <?php the_post_thumbnail( array(150, 150) ); ?>
            </a>
    	    <?php } wp_reset_postdata(); ?>
          </div>
    Thread Starter Kabulcode

    (@kabulcode)

    Thanks robvdn ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘More post from same category’ is closed to new replies.