Quantcast
Channel: WPRecipes
Viewing all articles
Browse latest Browse all 121

How to remove WordPress version number from pages and feeds

$
0
0

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!


Viewing all articles
Browse latest Browse all 121

Trending Articles