Skip to content

Instantly share code, notes, and snippets.

@mono96
Created June 1, 2022 03:07
Show Gist options
  • Save mono96/d76f3497e82918205550e3f03b094c9d to your computer and use it in GitHub Desktop.
Save mono96/d76f3497e82918205550e3f03b094c9d to your computer and use it in GitHub Desktop.
WordPressのアーカイブ2ページ目以降にnoindexを付与。要件:WordPress 5.7以降
//2ページ目以降にnoindex付与
add_filter( 'wp_robots', function( $robots ) {
if ( is_paged() ) {
$robots['noindex'] = true;
}
return $robots;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment