Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@timersys
Created October 18, 2019 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timersys/b630dc0e97791499f6f08ce0a4de9cf1 to your computer and use it in GitHub Desktop.
Save timersys/b630dc0e97791499f6f08ce0a4de9cf1 to your computer and use it in GitHub Desktop.
Cancel post geotargeting on certain pages
<?php
// cancel geotargeted posts on certain pages
add_filter('geot/cancel_posts_where', 'geotwp_cancel_geo' );
function geotwp_cancel_geo( $query ) {
// cancel for every page that is not search
if( ! is_page('search') ) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment