Hi Theme.co!
I am trying to block robots from indexing all portfolio items except for those in the “staff” category, and I haven’t been able to get it to work. Can you point me in the right direction?
Thank you for any advice you can offer!
add_action('wp_head', 'block_profiles');
function block_profiles(){
if ( is_singular( 'x-portfolio' ) ) {
if ( is_category( 'staff' ) ) {
?>
<meta name='robots' content='index, follow'/>
<?php
} else {
?>
<meta name='robots' content='noindex, follow'/>
<?php
} };