Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
/** * Basic hardening: remove WP version hints from
. * Keeps site cleaner and reduces trivial fingerprinting. */ add_action('init', function () { remove_action('wp_head', 'wp_generator'); add_filter('the_generator', '__return_empty_string'); remove_action('wp_head', 'wlwmanifest_link'); remove_action('wp_head', 'rsd_link'); });