Quantcast
Channel: WordPress.org Forums » [Search Exclude] Support
Viewing all articles
Browse latest Browse all 100

Question regarding SEO

$
0
0

Replies: 0

Hi, if we activate the SEO index blocking snippet, does the post/page will be reindexed after we unhide the post/page ?
Best regards!
Julian

function add_meta_for_search_excluded()
{
    global $post;
    if (false !== array_search($post->ID, get_option('sep_exclude', array()))) {
        echo '<meta name="robots" content="noindex,nofollow" />', "\n";
    }
}
add_action('wp_head', 'add_meta_for_search_excluded');


Viewing all articles
Browse latest Browse all 100

Trending Articles