Show a loop of related articles on the sidebar of single.php
(or any single post template sidebar), but exclude the current single post from the related loop. This code goes in the sidebar of a single template file of a WordPress theme. Related articles, for this code, are posts within the same category of the current single post being viewed. (To get related posts of custom post types, see Get Related Posts For Custom Post Type By Category. )
In the example below, you can modify the HTML on line 25 to display the thumbnails, and/or excerpts, depending on your preferences. Left as it, it will show a list of the titles of 3 related posts.
<?php $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), 'showposts'=>3, // Number of related posts that will be shown. 'ignore_sticky_posts'=>1 ); $my_query = new wp_query( $args ); if( $my_query->have_posts() ) { echo '<h3>Related Articles</h3>'; // You can edit this echo '<ul>'; while ($my_query->have_posts()) { $my_query->the_post(); ?> <!-- do stuff --> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php } echo '</ul>'; } } ?>
funky
June 25th, 2012 at 11:52 pm
How would you change the code to use it on single-custom.php
with custom post type “bags”
and custom taxonomy:
1. material
1.1 Leather
1.2 Plastic
1.3 Paper
I need to show below the single-post all the other custom-post from the product taxonomy :S
Ej: Single-custom.php show bag with leather taxonomy.
I need to show below all the other custom-post with the same taxonomy
I have so far this:
‘bags’, ‘posts_per_page’ => 100 ) ); ?>
have_posts() ) : while ( $loop->have_posts() ) : $loop->the_post(); ?>
<a class="thumb-bag" href="”>
Isabel
June 26th, 2012 at 10:30 am
See Related Posts by Custom Taxonomy for the code to do that. Just use ‘bags’ and ‘material’ for the ‘your_custom_post_type’ and ‘your_taxonomy’.
Jeanne
May 16th, 2014 at 8:39 am
Thank you so much for this code. It works beautifully.