WordPress añade una serie de meta-tags por medio de la función wp_head() en el head del documento.
Si queréis limpiar vuestra cabecera de los meta-tags que consideréis innecesarios sin usar plugins podéis hacerlo de la siguiente manera añadiendo algunas de estas líneas php en el archivo functions.php de vuestro theme:
remove_action( 'wp_head', 'wp_generator' ); remove_action( 'wp_head', 'rsd_link' ); remove_action( 'wp_head', 'wlwmanifest_link' ); remove_action( 'wp_head', 'start_post_rel_link' ); remove_action( 'wp_head', 'index_rel_link' ); remove_action( 'wp_head', 'wp_shortlink_wp_head' ); remove_action( 'wp_head', 'adjacent_posts_rel_link' );
Agradezco tu comentario 🤘