How to remove WordPress version number from pages and feeds

Simply paste the code snippet below in your functions.php file:

add_filter('the_generator', 'digwp_complete_version_removal');
function digwp_complete_version_removal() {
	return '';
}

Thanks to Jeff Starr for the tip!

Leave a Reply

Your email address will not be published. Required fields are marked *