I work in my Single.php template for Wordpress theme, but in related posts I have problem!
I want show related posts from parent category child for example I add parent category with A name in Wordpress, in this parent category we have B,C,D and other child categories that can set for every post in Wordpress posts area.
Well I publish new post in D (or other A children) category I want show in related posts box, other from D (or other A children) category.
this is my work but not good
$related = get_posts( array(
'category__in' => wp_get_post_categories( $post->ID ),
'numberposts' => 3,
'post__not_in' => array( $post->ID )
) );
I'm newbie please help me, thanks.