Skip to content

Instantly share code, notes, and snippets.

@hmbashar
Created September 18, 2019 05:40
Show Gist options
  • Save hmbashar/84988af5daee7dca699e540c12945383 to your computer and use it in GitHub Desktop.
Save hmbashar/84988af5daee7dca699e540c12945383 to your computer and use it in GitHub Desktop.
Query related post by category
<?php
$related = get_posts( array( 'category__in' => wp_get_post_categories($post->ID), 'numberposts' => 5, 'post__not_in' => array($post->ID) ) );
if( $related ) foreach( $related as $post ) {
setup_postdata($post); ?>
<ul>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<?php the_content('Read the rest of this entry &raquo;'); ?>
</li>
</ul>
<?php }
wp_reset_postdata(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment