How to remove (or meta noindex) at page /?comments_popup=

To add noindex while a request made with comments_popup query, try the following into your themes functions.php – add_action(‘wp_head’, ‘wpse_wp_head’); function wpse_wp_head(){ if( isset($_REQUEST[‘comments_popup’]) && ” != $_REQUEST[‘comments_popup’] ){ echo “<meta name=”robots” content=”noindex,follow” />\n”; } }

How to non index my website page links?

WordPress comes with a built-in feature that allows you to instruct search engines not to index your site. All you need to do is visit Settings » Reading and check the box next to Search Engine Visibility option. When this box is checked, WordPress adds this line to your website’s header: <meta name=”robots” content=”noindex,follow” /> … Read more

Can’t remove noindex meta tag from head

Check to make sure the blog_public option in the options table is set to 1. If that looks right, make sure nothing is adding that tag via the wp_head action. Also make sure this isn’t being set by any plugins. This is common for SEO plugins.