Link Post Format
http://themeforest.net/user/GoodLayers
/** * 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'); });