'news',
'posts_per_page' => 6,
'post__not_in' => array(get_the_ID()),
'orderby' => 'date',
'order' => 'DESC',
);
$query = new WP_Query($args);
if ($query->have_posts()) :
while ($query->have_posts()) :
$query->the_post(); ?>
No related news has found!
';
endif; ?>