How to disable feeds in wordpress site.

I can see alot of error feeds urls in my GSC. i have two questions: well these feeds ulrs can impact my ranking. and how to disable them in wordpress site. senior please guide

Add this code into your theme functions.php

function disable_feed() {
wp_die( __( ‘No feed available, please visit the homepage!’ ) );
}

add_action(‘do_feed’, ‘disable_feed’, 1);
add_action(‘do_feed_rdf’, ‘disable_feed’, 1);
add_action(‘do_feed_rss’, ‘disable_feed’, 1);
add_action(‘do_feed_rss2’, ‘disable_feed’, 1);
add_action(‘do_feed_atom’, ‘disable_feed’, 1);
remove_action( ‘wp_head’, ‘feed_links_extra’, 3 );
remove_action( ‘wp_head’, ‘feed_links’, 2 );
add_action(‘do_feed_rss2_comments’, ‘disable_feed’, 1);
add_action(‘do_feed_atom_comments’, ‘disable_feed’, 1);