• Hello everyone,
    I am stuck to very peculiar trouble. Attempting to add related 4 posts below single posts. (Without plugin support) When add related posts codes, the posts are displayed vertically aligned. But I want them to show horizontal. After millions effort, I couldn’t find a solution.

    I am adding codes

    <div class="relatedposts">
    <h3>Related posts</h3>
    <?php
      $orig_post = $post;
      global $post;
      $tags = wp_get_post_tags($post->ID);
       
      if ($tags) {
      $tag_ids = array();
      foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;
      $args=array(
      'tag__in' => $tag_ids,
      'post__not_in' => array($post->ID),
      'posts_per_page'=>4, // Number of related posts to display.
      'caller_get_posts'=>1
      );
       
      $my_query = new wp_query( $args );
     
      while( $my_query->have_posts() ) {
      $my_query->the_post();
      ?>
       
      <div class="relatedthumb">
        <a rel="external" href="<? the_permalink()?>"><?php the_post_thumbnail(array(150,100)); ?><br />
        <?php the_title(); ?>
        </a>
      </div>
       
      <? }
      }
      $post = $orig_post;
      wp_reset_query();
      ?>
    </div>

    Changed the thumbnail size but no luck. Tried to Changed its design from CSS without getting success. Kindly help.

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Related posts with thumbnail showing vertically’ is closed to new replies.