When you find noindex, nofollow in your archive page, tab page, category page, you can try to use the following code.
About Noindex and Nofollow
: You can crawl this page, and you can continue to index other links along this page
: This page is not allowed to be crawled, but other links can be crawled and indexed along this page
: You can crawl this page, but you are not allowed to crawl other links in the index along this page
: Do not crawl this page, and do not crawl other links to index along this page
Add the following code to theme functions.php
add_filter('avf_set_follow','avia_set_follow');
function avia_set_follow(){
$meta = ' ' . "\n";
return $meta;
}
Official description reference