You want to show other recent posts on your single post page, however you don’t want the currently viewed post to be repeated and show in the list.

<?php
	$args = array(
	 'post_type' => 'post',
	 'post__not_in' => array($post->ID),			
	);
	
        $query = new WP_Query($args);
				 
	if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post(); 
				
?>
				 
					
			        <!-- Example Code -->
				<a href="<?php the_permalink(); ?>"><h4><?php the_title(); ?></h4></a>
					
				 
				<?php endwhile; endif; ?>