Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created January 22, 2016 17:06
Show Gist options
  • Save kraftbj/bf01952e3ea1c67408b2 to your computer and use it in GitHub Desktop.
Save kraftbj/bf01952e3ea1c67408b2 to your computer and use it in GitHub Desktop.
Just UK it up
add_filter( 'the_job_location_map_link', 'bk_uk_the_location_map' );
fuction bk_uk_the_location_map( $link, $location ){
$link = '<a class="google_map_link" href="' . esc_url( 'http://maps.google.com/maps?q=' . urlencode( strip_tags( $location ) ) . '%2C+UK&zoom=14&size=512x512&maptype=roadmap&sensor=false' ) . '" target="_blank">' . esc_html( strip_tags( $location ) ) . '</a>';
return $link;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment