$category_ids,
'post__not_in' => array($post_id),
'post_type' => 'post',
'posts_per_page' => 3,
'post_status' => 'publish',
'ignore_sticky_posts'=> true
);
$acmephoto_featured_query = new WP_Query( $acmephoto_cat_post_args );
while ( $acmephoto_featured_query->have_posts() ) : $acmephoto_featured_query->the_post();
get_template_part( 'template-parts/content', 'related' );
endwhile;
wp_reset_query();
?>