mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
9 lines
259 B
Text
9 lines
259 B
Text
add_filter( 'aioseo_robots_meta', 'aioseo_filter_robots_meta' );
|
|
|
|
function aioseo_filter_robots_meta( $attributes ) {
|
|
if ( is_singular() ) {
|
|
$attributes['noindex'] = 'index';
|
|
$attributes['nofollow'] = 'nofollow';
|
|
}
|
|
return $attributes;
|
|
}
|