[ad_1]
The code looks like it’s Site Kit but it was actually the Hello them by Elementor adding the extra meta description. I’ll leave this here for anyone else that might come across this. I removed it using this:
function remove_hello_elementor_description_meta_tag() {
remove_action( 'wp_head', 'hello_elementor_add_description_meta_tag' );
}
add_action( 'after_setup_theme', 'remove_hello_elementor_description_meta_tag' );