Tag Archives: Pusan National University
/** * Retire tag archives. * * The site carries 3,803 tag terms against 1,576 real pages, and 3,137 of those * tags hold a single post - the main source of the "Soft 404" and "Crawled - * currently not indexed" volume in Search Console. Yoast's disable-post_tag * drops them from the sitemap but still serves the archive with a 200, so the * crawl cost remains. This retires the URLs properly. * * Safe here because no template on this site renders tag links: the_tags() only * appears in the unused post-format partials, and article pages output none. */ add_action( 'template_redirect', function () { if ( is_admin() || is_feed() || ! is_tag() ) { return; } wp_safe_redirect( home_url( '/' ), 301 ); exit; }, 1 );