X

How to remove generator information from WordPress site

Add below code to your functions.php in theme folder and it will remove the default meta generator of WordPress.

 
<?php 
 
	remove_action('wp_head', 'wp_generator');
 
?>