Site icon Hip-Hop Website Design and Development

How to remove index meta tag <meta name="robots" content="index, follow">

I need to remove this line <meta name="robots" content="index, follow"> on my site for the accessibility mode.

I successfully added the <meta name="robots" content="noindex, follow">
by calling add_action( ‘wp_head’, ‘wp_no_robots’, 1); but it shows both metatags

 <meta name="robots" content="noindex,follow"> <meta name="robots" content="index, follow">  

I didn’t find the way to remove the index metatag line.