mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://gist.github.com/amboutwe/2aa7dcc9a38986e11fac68c7306cc091#file-yoast_seo_canonical_remove_search-php
8 lines
194 B
Text
8 lines
194 B
Text
add_filter( 'wpseo_canonical', 'yoast_remove_canonical_search' );
|
|
function yoast_remove_canonical_search( $canonical ) {
|
|
if( is_search() ) {
|
|
return false;
|
|
} else {
|
|
return $canonical;
|
|
}
|
|
}
|