If you have one single page that you need to stop Google indexing, this the following code is how you fulfil that task.
1 2 3 4 5 6 7 8 |
function add_noindex_to_locations_pages() { if ( strpos( $_SERVER['REQUEST_URI'], '/category/locations/' ) !== false ) { echo '<meta name="robots" content="noindex,follow" />'; } } add_action( 'wp_head', 'add_noindex_to_locations_pages' ); |