add noindex nofollow to category archive

add_filter('wp_robots', 'add_noindex_nofollow_to_category_archive');
function add_noindex_nofollow_to_category_archive($robots) {
    if (is_category()) {
        unset($robots['max-image-preview']);
        $robots['noindex'] = true;
        $robots['nofollow'] = true;
    }

    return $robots;
}

Comments

Popular posts from this blog

miscellaneous

How to Find SESSDATA Cookie in Google Chrome