Quote:
Originally Posted by madtwin
Easily remove wordpress version from header (put the code in functions.php)
Code:
function wb_remove_version() {
return '';
}
add_filter('the_generator', 'wb_remove_version');
no need to pay $20...
|
no need to wrap that in a function just add the 1 line
Code:
remove_action('wp_head', 'wp_generator');