Created
January 22, 2016 17:06
-
-
Save kraftbj/bf01952e3ea1c67408b2 to your computer and use it in GitHub Desktop.
Just UK it up
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
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