mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
7 lines
246 B
Text
7 lines
246 B
Text
add_filter( 'aioseo_robots_meta', 'aioseo_filter_robots_meta' );
|
|
function aioseo_filter_robots_meta( $attributes ) {
|
|
if ( is_search() && 'product' === get_query_var('post_type') ) {
|
|
$attributes['index'] = "noindex";
|
|
};
|
|
return $attributes;
|
|
}
|