Integrate SearchWP with SEO Framework local search exclusion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function my_searchwp_seo_framework_integration( $ids ) { | |
$post_ids = get_posts( array( | |
'post_type' => 'any', | |
'fields' => 'ids', | |
'nopaing' => true, | |
'meta_query' => array( | |
array( | |
'key' => 'exclude_local_search', | |
'type' => 'BINARY', | |
'value' => true, | |
), | |
), | |
) ); | |
if ( ! empty( $post_ids ) ) { | |
$ids = array_values( | |
array_unique( | |
array_merge( (array) $ids, $post_ids ) | |
) | |
); | |
} | |
return $ids; | |
} | |
add_filter( 'searchwp_prevent_indexing', 'my_searchwp_seo_framework_integration' ); | |
add_filter( 'searchwp_exclude', 'my_searchwp_seo_framework_integration' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment