• Resolved daniish

    (@daniish)


    Hello,

    I have followed this worked example for displaying related posts:
    https://www.wpbeginner.com/wp-themes/how-to-add-related-posts-with-a-thumbnail-without-using-plugins/

    
    $orig_post = $post;
    global $post;
    $categories = get_the_category($post->ID);
    if ($categories) {
    $category_ids = array();
    foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
    $args=array(
    'category__in' => $category_ids,
    'post__not_in' => array($post->ID),
    'posts_per_page'=> 2, // Number of related posts that will be shown.
    'ignore_sticky_posts'=>1  
    );
    $my_query = new wp_query( $args );
    if( $my_query->have_posts() ) {
    echo '<div id="related_posts"><h3>Related Posts</h3><ul>';
    while( $my_query->have_posts() ) {
    $my_query->the_post();?>
    <div id="related_post"><a href="<? the_permalink()?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_post_thumbnail(); ?></a><h3><a href="<? the_permalink()?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3></div>					
    <?
    }
    echo '</ul></div>';
    }
    }
    $post = $orig_post;
    wp_reset_query();
    

    It display 2 related posts at the bottom of the page, which is perfect. However, despite there being 9 posts with the same category – only 3 display. You can see this by clicking on the related links; the same 3 results are shown all the time:
    https://www.heavenlygardens.org.uk/judging-days/

    How do i fix this?

    • This topic was modified 7 years, 6 months ago by daniish.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Why only 3 related posts shown?’ is closed to new replies.