The CC-Clean-Head-Tags plugin removes:
WP Generator Meta from:
Additionally it removes version numbers from style and script links.
You can exclude version number removal from certain style and/or script using these built-in filters:
Clearcode\Clean_Head_Tags\StyleClearcode\Clean_Head_Tags\ScriptFor example like this:
add_filter( ‘Clearcode\Clean_Head_Tags\Style’, function( $clean, $src, $handle ) {
return ! in_array( $handle, [‘style’] );
}, 10, 3 );