Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 9, 2017 04:45
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 wpflippercode/7321063f2b1fcdd612c34b9a93ab195f to your computer and use it in GitHub Desktop.
Save wpflippercode/7321063f2b1fcdd612c34b9a93ab195f to your computer and use it in GitHub Desktop.
Show Posts of a specific category on the google maps
add_filter('wpgmp_post_args', 'wpgmp_post_args',1,2 );
function wpgmp_post_args($args,$map) {
global $post;
if(is_category(1)) {
$args['category__in'] = 1; // Show Posts of Category ID = 1 on the google maps.
}
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment