Thread Starter
harbie
(@harbie)
Its the section below the blog that shows
“Related Posts”
and shows posts related to that category. Even though I turn off category and archive, still pops up in there.
Code kind of looks like this:
$related = get_posts( array( ‘category__in’ => wp_get_post_categories($post->ID), ‘numberposts’ => 4, ‘post__not_in’ => array($post->ID) ) );
if( $related ) foreach( $related as $post )
{
setup_postdata($post);